<-- Previous || Up || Next -->

Sum Of Squares Array Function
Math Statistics Class

Public Function SumOfSquaresArray( _
    ByRef vValues As Variant _
    ) As Variant

Sum of squares of numeric values.
More efficient version of the SumOfSquares Function but with restrictions on the arguments it accepts.

Examples:
    SumOfSquaresArray(Array(12, 34, 56)) = 4436
    SumOfSquaresArray(SampleData) = 1989646
See also:
    SumOfSquares Function
    ProductArray Function
    SumArray Function
    SUMSQ Function (Microsoft Excel)
vValues: Numeric-type array or Variant array containing only numeric elements. This function is NOT affected by the current setting of the StatVarType Property. It assumes that vValues is an array that contains only numeric elements.
Return value: Function returns the sum of the squares of the numeric values. Function returns Null if there is some type of error, such as if the argument is a Variant array which contains an Object reference or String.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.