生成 Gamma 随机变量“统计分布”,埃文斯,黑斯廷斯,Kong雀,第 2 版, 威利,1993 年,第 75-81 页
输入: (N,M) = 要生成的随机变量数组的大小b = 比例参数 > 0 c = 形状参数 > 0
概率密度函数 (pdf) p(x) = (x/b)^(c-1) * exp(-x/b) / (b * gamma(c))
其中 gamma(c) 是 gamma 函数( http://en.wikipedia.org/wiki/Gamma_function )
伽马分布的基本统计数据平均值 = bc 方差 = b^2 c
生成方法来自http://en.wikipedia.org/wiki/Gamma_distribution#Generating_gamma-distributed_random_variables 符号:theta = b k = c 该
2022-02-16 12:31:56
15KB
matlab
1