Matrix.Meanc Method

Overload List

#SignatureDescription
1TCplx MeancMean value (complex).
└ 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 (complex).

Returns: TCplx (complex)

Remarks:

Returns the mean value of all calling object complex elements. The result is a complex value. An exception is raised is calling object Dew.Math.Matrix.Complex is False.

See Also: Matrix.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.Matrix.Complex property is False 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.Matrix.Complex property is False.

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.Matrix.Complex property is False or array borders are overrun/underrun.