概率密度函数
逆伽玛( 逆伽玛分布)分布概率密度函数(PDF)。
[Inverse Gamma]( Gamma_distribution)随机变量的(PDF)为
其中alpha是形状参数, beta是比例参数。
安装
$ npm install distributions-invgamma-pdf
要在浏览器中使用,请使用 。
用法
var pdf = require ( 'distributions-invgamma-pdf' ) ;
pdf(x [,选项])
评估[Inverse Gamma]( Gamma_distribution)分布的(PDF)。 x可以是 , array ,typed array或matrix 。
var matrix = require ( 'dstructs-matrix' ) ,
mat ,
out ,
x ,
i ;
out
1