Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx Minc(); | Minimum value. |
| 2 | TCplx Minc(int Index, int Len); | Returns the minimum value of calling object complex elements [Index]..[Index+Len-1]. |
| 3 | int Minc(TCplx &AMin, int Index, int Len); | Calculate the minimum value of calling object complex elements [Index]..[Index+Len-1]. |
Overload 1: TCplx Minc();
Minimum value.
Returns the minimum 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 TOpenCLBase::Complex is .
Overload 2: TCplx Minc(int Index, int Len);
Returns the minimum value of calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
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. TOpenCLBase::Complex property is or array borders are overrud/underrun.
Overload 3: int Minc(TCplx &AMin, int Index, int Len);
Calculate the minimum value of calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMin | TCplx & | |
| 2 | Index | int | |
| 3 | Len | int |
The AMin parameter returns complex minimum value. Returns the index of minimum value. Complex elements are first compared by the amplitude and then by the argument. An exception is raised if calling object TOpenCLBase::Complex property is or array borders are overrun/underrun.