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

Deviations Squared Array Function
Math Statistics Class

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

Square of deviations of numeric values from the mean.
More efficient version of the DeviationsSquared Function but with restrictions on the arguments it accepts.

Examples:
    DeviationsSquaredArray(Array(12, 34, 56)) = 968
    DeviationsSquaredArray(SampleData) = 51283.8695652174
See also:
    DeviationsSquared Function
    MedianDeviation Function
    StandardDeviationArray Function
    StandardDeviationPopulationArray Function
    VarianceArray Function
    VariancePopulationArray Function
    AverageVariationArray Function
    DEVSQ 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 square of deviations 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.