Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx Maxc | Maximum value. |
| └ indexed: TCplx Maxc(Int32 Index, Int32 Len) | ||
| 2 | Int32 Maxc(ref TCplx AMax, Int32 Index, Int32 Len) | Calculate the maximum value of calling object complex elements [Index]..[Index+Len-1]. |
Overload 1: TCplx Maxc
Maximum value.
Returns: TCplx (complex)
Returns the maximum value of all calling object complex elements. Complex elements are first compared by the amplitude and then by the argument. An exception is raised if calling object Dew.Math.Vector.Complex is False.
Indexed: TCplx Maxc(Int32 Index, Int32 Len)
Returns the maximum value of calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Returns: TCplx (complex)
The result is a complex value. Complex elements are first compared by the amplitude and then by the argument. An exception is raised if calling object Dew.Math.Vector.Complex property is False or array borders are overrud/underrun.
Overload 2: Int32 Maxc(ref TCplx AMax, Int32 Index, Int32 Len)
Calculate the maximum value of calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMax | TCplx (ref) | output |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Returns: Int32
The AMax parameter returns complex maximum value. Returns the Index of maximum value. Complex elements are first compared by the amplitude and then by the argument. The AIndex parameter returns the Index of maximum value. An exception is raised if calling object Dew.Math.Vector.Complex property is False or array borders are overrud/underrun.