定义和用法
stats_stat_powersum() 函数可以返回向量的幂和。
用法
float stats_stat_powersum( array $arr, float $power )
参数
Sr.No | 参数 | 描述 |
---|---|---|
1 | arr |
输入数组 |
2 | power |
动力 |
返回值
stats_stat_powersum() 函数可以返回表示为数组 arr 的向量的 power-th 次幂之和。
依赖关系
这个函数最初是在统计扩展(PHP 4.0.0 和 PEAR 1.4.0)中引入的。我们在本教程中使用了最新版本的 stats-2.0.3(PHP 7.0.0 或更高版本和 PEAR 1.4.0 或更高版本)
示例
在以下示例中,我们计算表示为数组 array(1, 2, 4) 的向量的 2 次方和。
<?php
var_dump(stats_stat_powersum(array(1, 2, 4), 2));
?>
输出
这将产生以下结果 -
float(21)
示例
在下面的示例中,在下面的示例中,我们计算表示为数组 array(1, 2, 4) 的向量的 0 次方和。
<?php
var_dump(stats_stat_powersum(array(1, 2, 4), 0));
?>
输出
这将产生以下结果 -
float(3)
示例
在以下示例中,我们计算表示为数组 array(1, 2, 4) 的向量的 -2 次幂的总和。
<?php
var_dump(stats_stat_powersum(array(1, 2, 4), -2));
?>
输出
这将产生以下结果 -
float(1.3125)
示例
下面是一个错误案例。在下面的例子中,我们传递空数组。日志中会显示警告。
<?php
// error cases
var_dump(stats_stat_powersum(array(), 1));
?>
输出
这将在日志中产生以下结果和警告 PHP Warning:stats_stat_powersum():Both value and power is zero
float(0)
相关用法
- PHP stats_stat_percentile()用法及代码示例
- PHP stats_stat_paired_t()用法及代码示例
- PHP stats_stat_binomial_coef()用法及代码示例
- PHP stats_stat_factorial()用法及代码示例
- PHP stats_stat_correlation()用法及代码示例
- PHP stats_stat_innerproduct()用法及代码示例
- 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 Powersum() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。