clMatrix.Meanc Method

Overload List

#SignatureDescription
1TCplx MeancMean value.
└ indexed: TCplx Meanc(Int32 Index, Int32 Len)
2void Meanc(ref TCplx AMean)Calculate the mean value from all calling object complex elements.
└ indexed: void Meanc(ref TCplx AMean, Int32 Index, Int32 Len)

Overload 1: TCplx Meanc

Mean value.

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

Remarks:

An exception is raised is calling object Dew.Math.clMatrix.Complex is .

See Also: clMatrix.Mean

Indexed: TCplx Meanc(Int32 Index, Int32 Len)

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

#NameTypeDescription
1IndexInt32start index
2LenInt32element count

Returns: TCplx (complex)

Remarks:

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

Overload 2: void Meanc(ref TCplx AMean)

Calculate the mean value from all calling object complex elements.

#NameTypeDescription
1AMeanTCplx (ref)pre-computed mean

Result: stored in self (calling object)

Remarks:

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

Indexed: void Meanc(ref TCplx AMean, Int32 Index, Int32 Len)

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

#NameTypeDescription
1AMeanTCplx (ref)pre-computed mean
2IndexInt32start index
3LenInt32element count

Result: stored in self (calling object)

Remarks:

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