Ds\Vector::sum() 函数可以返回向量中所有值的总和。
用法
public number Ds\Vector::sum( void )
Ds\Vector::sum() 函数没有任何参数。
Ds\Vector::sum() 函数可以根据向量中的值以浮点数或整数形式返回向量中所有值的总和。
例子1
<?php
$array = new \Ds\Vector([5, 2, 1, 4, 8, 6]);
echo("The original vector:\n");
var_dump($array);
echo("\n The sum of elements:\n");
var_dump($array->sum());
?>
例子2
<?php
$array = new \Ds\Vector([2.5, 5, 1, 3.6, 7, 4.3]);
echo("The original vector:\n");
print_r($array);
echo("\n The sum of elements:\n");
print_r($array->sum());
?>
相关用法
- PHP Ds Vector sorted()用法及代码示例
- PHP Ds Vector set()用法及代码示例
- PHP Ds Vector slice()用法及代码示例
- PHP Ds Vector sort()用法及代码示例
- PHP Ds Vector allocate()用法及代码示例
- PHP Ds Vector get()用法及代码示例
- PHP Ds Vector count()用法及代码示例
- PHP Ds Vector unshift()用法及代码示例
- PHP Ds Vector rotate()用法及代码示例
- PHP Ds Vector last()用法及代码示例
- PHP Ds Vector push()用法及代码示例
- PHP Ds Vector first()用法及代码示例
- PHP Ds Vector jsonSerialize()用法及代码示例
- PHP Ds Vector insert()用法及代码示例
- PHP Ds Vector construct()用法及代码示例
- PHP Ds Vector contains()用法及代码示例
- PHP Ds Vector toArray()用法及代码示例
- PHP Ds Vector merge()用法及代码示例
- PHP Ds Vector join()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Vector sum() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。