Matrix::Mean Method

Overload List

#SignatureDescription
1double Mean() const;Mean value.
2double Mean(int Index, int Len) const;Returns real mean value from calling object elements [Index]..[Index+Len-1].
3void Mean(double &AMean, int Index, int Len) const;Calculate the mean value from calling object elements [Index]..[Index+Len-1].

Overload 1: double Mean() const;

Mean value.

Remarks:

Calculate the mean value of all calling object elements. The result is a real value. An exception is raised if calling object Matrix::Complex property is true.

See Also: Matrix::Sum, Matrix::Meanc
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 2: double Mean(int Index, int Len) const;

Returns real mean value from calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1Indexint
2Lenint
Remarks:

An exception is raised if calling object Matrix::Complex property is true or array borders are overrun.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 3: void Mean(double &AMean, int Index, int Len) const;

Calculate the mean value from calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1AMeandouble &
2Indexint
3Lenint
Remarks:

The result AMean is a real value. An exception is raised if calling object Matrix::Complex property is true or array borders are overrun/underrun.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler