Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx Meanc | Mean value. |
| └ indexed: TCplx Meanc(Int32 Index, Int32 Len) | ||
| 2 | void 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.
An exception is raised is calling object Dew.Math.TOpenCLBase.Complex is .
Indexed: TCplx Meanc(Int32 Index, Int32 Len)
Returns complex mean value from calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Returns: TCplx (complex)
An exception is raised if calling object Dew.Math.TOpenCLBase.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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | TCplx (ref) | pre-computed mean |
Result: stored in self (calling object)
The result AMean is a complex value. An exception is raised if calling object Dew.Math.TOpenCLBase.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].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | TCplx (ref) | pre-computed mean |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object)
The result AMean is a complex value. An exception is raised if calling object Dew.Math.TOpenCLBase.Complex property is or array borders are overrun/underrun.