标准普通累积分布函数是否有php函数?
我找不到一个。
插件/库也很棒。
请告诉我它在哪里。
非常感谢提前!
stats_cdf_normal
提供Fatal error: Call to undefined function stats_cdf_normal()
答案 0 :(得分:3)
PECL stats package中有一个未记录的stats_cdf_normal()
函数。
查看本页底部的注释:http://www.php.net/manual/en/ref.stats.php
oliver at••••••••dot com:
此扩展中有一些未记录的函数,例如我通过阅读DCDFLIB文档和一些反复试验找到了以下内容:
<?php
/**
* stats_cdf_normal($x, $mean, $sd, 1)
* @return float cumulative probablity
*/
echo stats_cdf_normal(1.96, 0, 1, 1) . "\n";
/**
* stats_cdf_normal($p, $mean, $sd, 2)
* @return float x which bounds cumulative probalility $p
*/
echo stats_cdf_normal(0.975, 0, 1, 2) . "\n";
// less useful
// echo stats_cdf_normal(0.4,0.5,0.6,3) . "\n";
// echo stats_cdf_normal(0.4,0.5,0.6,4) . "\n";
?>