Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLBase *ThresholdGT(TOpenCLBase *Vec, const double GTLevel, const double GTValue, int VecIndex, int Index, int Len); | |
| 2 | TOpenCLBase *ThresholdGT(TOpenCLBase *Vec, const double GTLevel, const TCplx >Value, int VecIndex, int Index, int Len); | |
| 3 | TOpenCLValue *ThresholdGT(TOpenCLValue *Vec, double GTLevel, double GTValue); | Threshold greater than operation. |
| 4 | TOpenCLValue *ThresholdGT(TOpenCLValue *Vec, double GTLevel, TCplx GTValue); | Perform "greater than" threshold operation for complex value in Vec. |
Overload 1: TOpenCLBase *ThresholdGT(TOpenCLBase *Vec, const double GTLevel, const double GTValue, int VecIndex, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLBase * | |
| 2 | GTLevel | const double | |
| 3 | GTValue | const double | |
| 4 | VecIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler
Overload 2: TOpenCLBase *ThresholdGT(TOpenCLBase *Vec, const double GTLevel, const TCplx >Value, int VecIndex, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLBase * | |
| 2 | GTLevel | const double | |
| 3 | GTValue | const TCplx & | |
| 4 | VecIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler
Overload 3: TOpenCLValue *ThresholdGT(TOpenCLValue *Vec, double GTLevel, double GTValue);
Threshold greater than operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLValue * | |
| 2 | GTLevel | double | |
| 3 | GTValue | double |
Remarks:
Perform operation on Vec value. The GTValue parameter is an upper bound for threshold operation. Vec value bigger than LTLevel will be replaced with GTValue. For a complex number the comparison will be applied with the norm of the complex value.
Declared in Dew::Math::TOpenCLValue · Dew.Math/clMtxVec.h · Cross-compiler
Overload 4: TOpenCLValue *ThresholdGT(TOpenCLValue *Vec, double GTLevel, TCplx GTValue);
Perform "greater than" threshold operation for complex value in Vec.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLValue * | |
| 2 | GTLevel | double | |
| 3 | GTValue | TCplx |
Remarks:
Store the result in the calling object. FloatPrecision and TOpenCLBase::Complex properties of the calling object are adjusted automatically. If Vec value is not complex, an exception will be raised.
Declared in Dew::Math::TOpenCLValue · Dew.Math/clMtxVec.h · Cross-compiler