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