TOpenCLValue::ThresholdLT Method

Overload List

#SignatureDescription
1TOpenCLBase *ThresholdLT(TOpenCLBase *Vec, const double LTLevel, const double LTValue, int VecIndex, int Index, int Len);
2TOpenCLBase *ThresholdLT(TOpenCLBase *Vec, const double LTLevel, const TCplx &LTValue, int VecIndex, int Index, int Len);
3TOpenCLValue *ThresholdLT(TOpenCLValue *Vec, double LTLevel, double LTValue);Threshold less than operation.
4TOpenCLValue *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);

#NameTypeDescription
1VecTOpenCLBase *
2LTLevelconst double
3LTValueconst double
4VecIndexint
5Indexint
6Lenint
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler

Overload 2: TOpenCLBase *ThresholdLT(TOpenCLBase *Vec, const double LTLevel, const TCplx &LTValue, int VecIndex, int Index, int Len);

#NameTypeDescription
1VecTOpenCLBase *
2LTLevelconst double
3LTValueconst TCplx &
4VecIndexint
5Indexint
6Lenint
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.

#NameTypeDescription
1VecTOpenCLValue *
2LTLeveldouble
3LTValuedouble
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.

See Also: TOpenCLValue::ThresholdGT, TOpenCLValue::ThresholdGT_LT
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.

#NameTypeDescription
1VecTOpenCLValue *
2LTLeveldouble
3LTValueTCplx
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