累积分布函数
分布。
随机变量的为
其中alpha是第一个形状参数, beta是第二个形状参数。
安装
$ npm install distributions-beta-cdf
要在浏览器中使用,请使用 。
用法
var cdf = require ( 'distributions-beta-cdf' ) ;
cdf(x [,选项])
评估分布的。 x可以是number , array ,typed array或matrix 。
var matrix = require ( 'dstructs-matrix' ) ,
mat ,
out ,
x ,
i ;
out = cdf ( 0.5 ) ;
// returns 0.5
x = [ 0.2 , 0.4 , 0.6 , 0.8 ] ;
out = cdf ( x , {
'alpha' : 2 ,
'beta
1