定义和用法
stats_stat_binomial_coef() 函数可以返回一个二项式系数。
用法
float stats_stat_binomial_coef( int $x, int $n )
参数
Sr.No | 参数 | 描述 |
---|---|---|
1 | x |
从集合中选择的数量 |
2 | n |
集合中元素的数量 |
返回值
stats_stat_binomial_coef() 函数可以返回 n 选择 x 的二项式系数。
依赖关系
这个函数最初是在统计扩展(PHP 4.0.0 和 PEAR 1.4.0)中引入的。我们在本教程中使用了最新版本的 stats-2.0.3(PHP 7.0.0 或更高版本和 PEAR 1.4.0 或更高版本)
示例
在下面的例子中,我们计算二项式系数 4 选择 0。
<?php
var_dump(stats_stat_binomial_coef(0, 4));
?>
输出
这将产生以下结果 -
float(1)
示例
在下面的例子中,我们计算二项式系数 4 选择 1。
<?php
var_dump(stats_stat_binomial_coef(1, 4));
?>
输出
这将产生以下结果 -
float(4)
相关用法
- PHP stats_stat_factorial()用法及代码示例
- PHP stats_stat_percentile()用法及代码示例
- PHP stats_stat_correlation()用法及代码示例
- PHP stats_stat_innerproduct()用法及代码示例
- PHP stats_stat_powersum()用法及代码示例
- PHP stats_stat_paired_t()用法及代码示例
- PHP stats_stat_independent_t()用法及代码示例
- PHP stats_standard_deviation()用法及代码示例
- PHP stats_dens_pmf_binomial()用法及代码示例
- PHP stats_cdf_chisquare()用法及代码示例
- PHP stats_cdf_t()用法及代码示例
- PHP stats_rand_gen_iuniform()用法及代码示例
- PHP stats_cdf_exponential()用法及代码示例
- PHP stats_harmonic_mean()用法及代码示例
- PHP stats_cdf_normal()用法及代码示例
- PHP stats_rand_gen_ipoisson()用法及代码示例
- PHP stats_dens_laplace()用法及代码示例
- PHP stats_cdf_poisson()用法及代码示例
- PHP stats_rand_gen_beta()用法及代码示例
- PHP stats_cdf_beta()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Stats Stat Binomial Coef() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。