定义和用法
stats_rand_gen_t() 函数可以从 t-distribution 生成单个随机偏差。
用法
float stats_rand_gen_t( float $df )
参数
Sr.No | 参数 | 描述 |
---|---|---|
1 | df |
自由度 |
返回值
stats_rand_gen_t() 函数可以返回 t-distribution 的随机偏差,其自由度为 df。
依赖关系
这个函数最初是在统计扩展(PHP 4.0.0 和 PEAR 1.4.0)中引入的。我们在本教程中使用了最新版本的 stats-2.0.3(PHP 7.0.0 或更高版本和 PEAR 1.4.0 或更高版本)
示例
在下面的示例中,我们生成一个与 t-distribution 的随机偏差,自由度为 1。
<?php
var_dump(is_float(stats_rand_gen_t(1)));
?>
输出
这将产生以下结果 -
bool(true)
示例
下面是一个错误案例。在以下示例中,我们传递 df < 0。日志中会显示警告。
<?php
// error cases
var_dump(stats_rand_gen_t(-0.1)); // df < 0
?>
输出
这将在日志中产生以下结果和警告 PHP Warning:stats_rand_gen_t():df <= 0 。 df:-1.000000E-1
bool(false)
示例
下面是一个错误案例。在以下示例中,我们传递 df == 0。日志中会显示警告。
<?php
// error cases
var_dump(stats_rand_gen_t(0)); // df == 0
?>
输出
这将在日志中产生以下结果和警告 PHP Warning:stats_rand_gen_t():df <= 0 。 df: 0.000000E+0
bool(false)
相关用法
- PHP stats_rand_gen_iuniform()用法及代码示例
- PHP stats_rand_gen_ipoisson()用法及代码示例
- PHP stats_rand_gen_beta()用法及代码示例
- PHP stats_rand_gen_chisquare()用法及代码示例
- PHP stats_rand_gen_f()用法及代码示例
- PHP stats_rand_gen_funiform()用法及代码示例
- PHP stats_rand_gen_int()用法及代码示例
- PHP stats_rand_gen_normal()用法及代码示例
- PHP stats_rand_gen_ibinomial()用法及代码示例
- PHP stats_rand_gen_exponential()用法及代码示例
- PHP stats_rand_get_seeds()用法及代码示例
- PHP stats_rand_ranf()用法及代码示例
- PHP stats_rand_setall()用法及代码示例
- PHP stats_dens_pmf_binomial()用法及代码示例
- PHP stats_cdf_chisquare()用法及代码示例
- PHP stats_cdf_t()用法及代码示例
- PHP stats_cdf_exponential()用法及代码示例
- PHP stats_harmonic_mean()用法及代码示例
- PHP stats_cdf_normal()用法及代码示例
- PHP stats_dens_laplace()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Stats Rand Gen t() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。