float sum(float n)
int sum(int n)
Returns the argument.
float sum(<vector>v)
Returns the sum of the vector’s components.
int sum(int nums[])
float sum(float nums[])
Returns the sum of the items of the array.
<vector> sum(<vector>arr[])
Returns a vector where the components are the sums of the corresponding components in the vectors in the array.
See also | |
math |
|