作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Mathematica 中寻找与以下 Matlab 函数等效的函数:
“R = poissrnd(lambda) 从具有平均参数 lambda 的泊松分布生成随机数。lambda 可以是向量、矩阵或多维数组。R 的大小是 lambda 的大小。”
下面的函数输出示例。
b = 95.7165 95.7165 95.7165 95.7165 95.7165 98.9772 98.9772 98.9772 98.9772 0.3876
poissrnd(b)
ans =100 115 81 90 109 106 104 87 104 2
我怎样才能在 Mathematica 8 中做类似的事情?
最佳答案
Poisson distribution仅为整数定义。所以你需要使用 RandomInteger与 PoissonDistribution像这样:
poissrnd[lambda_]:=RandomInteger[PoissonDistribution[lambda]]
用法:
b = {95.7165, 95.7165, 95.7165, 95.7165, 95.7165, 98.9772, 98.9772,
98.9772, 98.9772, 0.3876};
poissrnd /@ b
Out[1] = {104, 97, 67, 84, 96, 123, 93, 96, 100, 0}
关于wolfram-mathematica - 随机泊松噪声,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7741249/
我是一名优秀的程序员,十分优秀!