SumSQ()
This function calculates the sum of squares of the numbers provided as arguments to the function. The arguments provided to this function can be numbers, range of numbers, arrays, etc.
Syntax:
= SumSQ (Number1, Number2, Number…)
Number1, Number2, Number: These are numbers for which sum of squares is to be calculated
Example:
- = SumSQ(1, 2, 3) - result will be - 14
This function does calculation as – ((1*1) + (2*2) + (3*3))
0 comments:
Post a Comment