Sum_squared
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Sum_squared
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Given a list of numbers, returns the sum of the squares of the numbers.
Function signature
SUM_SQUARED(values: Array) => Number
Parameter | Description |
---|---|
Values | List of numeric values |
Examples
Formula | Return value |
---|---|
SUM_SQUARED([10, 20, 30]) | 1400 |
Was this article helpful?