Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Meanc: TCplx; | Mean value (complex). |
| └ indexed: function Meanc(Index: Integer; Len: Integer): TCplx; | ||
| 2 | procedure Meanc(out AMean: TCplx); | Calculate the mean value from all calling object complex elements. |
| └ indexed: procedure Meanc(out AMean: TCplx; Index: Integer; Len: Integer); |
Overload 1: function Meanc: TCplx;
Mean value (complex).
Returns: TCplx (complex)
Returns the mean value of all calling object complex elements. The result is a complex value. An exception is raised is calling object Matrix.Complex is False.
Indexed: function Meanc(Index: Integer; Len: Integer): TCplx;
Returns complex mean value from calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Integer | start index |
| 2 | Len | Integer | element count |
Returns: TCplx (complex)
An exception is raised if calling object Matrix.Complex property is False or array borders are overrun/underrun.
Overload 2: procedure Meanc(out AMean: TCplx);
Calculate the mean value from all calling object complex elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | TCplx | pre-computed mean |
Result: stored in self (calling object)
The result AMean is a complex value. An exception is raised if calling object Matrix.Complex property is False.
Indexed: procedure Meanc(out AMean: TCplx; Index: Integer; Len: Integer);
Calculate the mean value from calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | TCplx | pre-computed mean |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object)
The result AMean is a complex value. An exception is raised if calling object Matrix.Complex property is False or array borders are overrun/underrun.