概率密度函数
概率密度函数(PDF)。
随机变量的(PDF)为
其中mu是平均值,而sigma > 0是标准偏差。
安装
$ npm install distributions-normal-pdf
要在浏览器中使用,请使用 。
用法
var pdf = require ( 'distributions-normal-pdf' ) ;
pdf(x [,选项])
计算的(PDF)。 x可以是 , array ,typed array或matrix 。
var matrix = require ( 'dstructs-matrix' ) ,
mat ,
out ,
x ,
i ;
// Standard Normal Distribution (mu=1, sigma=1):
out = pdf ( 1 ) ;
// returns 0.2419707
out = pdf
1