clMatrix::Meanc Method

Overload List

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

Overload 1: TCplx Meanc() const;

Mean value.

Returns: the mean value of all calling object complex elements. The result is a complex value.

Remarks:

An exception is raised is calling object clMatrix::Complex is .

See Also: clMatrix::Mean
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 2: TCplx Meanc(int Index, int Len) const;

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

#NameTypeDescription
1Indexint
2Lenint
Remarks:

An exception is raised if calling object clMatrix::Complex property is or array borders are overrun/underrun.

Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 3: void Meanc(TCplx &AMean) const;

Calculate the mean value from all calling object complex elements.

#NameTypeDescription
1AMeanTCplx &
Remarks:

The result AMean is a complex value. An exception is raised if calling object clMatrix::Complex property is .

Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 4: void Meanc(TCplx &AMean, int Index, int Len) const;

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

#NameTypeDescription
1AMeanTCplx &
2Indexint
3Lenint
Remarks:

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

Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler