Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx Meanc() const; | Mean value. |
| 2 | TCplx Meanc(int Index, int Len) const; | Returns complex mean value from calling object complex elements [Index]..[Index+Len-1]. |
| 3 | void Meanc(TCplx &AMean) const; | Calculate the mean value from all calling object complex elements. |
| 4 | void 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.
An exception is raised is calling object clVector::Complex is .
Overload 2: TCplx Meanc(int Index, int Len) const;
Returns complex mean value from calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
An exception is raised if calling object clVector::Complex property is or array borders are overrun/underrun.
Overload 3: void Meanc(TCplx &AMean) const;
Calculate the mean value from all calling object complex elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | TCplx & |
The result AMean is a complex value. An exception is raised if calling object clVector::Complex property is .
Overload 4: void Meanc(TCplx &AMean, int Index, int Len) const;
Calculate the mean value from calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | TCplx & | |
| 2 | Index | int | |
| 3 | Len | int |
The result AMean is a complex value. An exception is raised if calling object clVector::Complex property is or array borders are overrun/underrun.