gpt4 book ai didi

php - 标准正态累积分布函数

转载 作者:行者123 更新时间:2023-12-04 05:11:41 24 4
gpt4 key购买 nike

标准正态累积分布函数是否有php函数?

我找不到一个。

插件/库也很棒。

请告诉我它在哪里。

非常感谢提前!

stats_cdf_normal

Fatal error: Call to undefined function stats_cdf_normal()

最佳答案

有一个未记录的 stats_cdf_normal() PECL stats package 中的函数.

查看本页底部的注释:http://www.php.net/manual/en/ref.stats.php

oliver at •••••••• dot com:

There are some undocumented functions in this extension, eg I found the following by reading the DCDFLIB docs and some trial and error:


<?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";
?>

关于php - 标准正态累积分布函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14844612/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com