clVector::ThresholdGT Method

Overload List

#SignatureDescription
1TOpenCLMtxVec *ThresholdGT(double GTLevel, double GTValue) const;Threshold greater than operation.
2TOpenCLMtxVec *ThresholdGT(double GTLevel, double GTValue, int Index, int Len) const;Perfrom "greater than" threshold operation on the calling object values in range [Index]..[Index+Len-1].
3TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, double GTValue) const;Perform "greater than" threshold operation on all Vec object values.
4TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, double GTValue, int VecIndex, int Index, int Len) const;Perform "greater than" threshold operation on Vec elements from range [VecIndex]..[VecIndex+Len-1].
5TOpenCLMtxVec *ThresholdGT(double GTLevel, const TCplx &GTValue) const;Perfrom "greater than" threshold operation for complex numbers.
6TOpenCLMtxVec *ThresholdGT(double GTLevel, const TCplx &GTValue, int Index, int Len) const;Perfrom "greater than" threshold operation for complex numbers on the calling object values in range [Index]..[Index+Len-1].
7TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, const TCplx &GTValue) const;Perform "greater than" threshold operation for complex numbers on all Vec object values.
8TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, const TCplx &GTValue, int VecIndex, int Index, int Len) const;Perform "greater than" threshold operation for complex numbers on Vec elements from range [VecIndex]..[VecIndex+Len-1].

Overload 1: TOpenCLMtxVec *ThresholdGT(double GTLevel, double GTValue) const;

Threshold greater than operation.

#NameTypeDescription
1GTLeveldouble
2GTValuedouble
Remarks:

Perform operation on all calling object values. The GTValue parameter is an upper bound for threshold operation. All values bigger than LTLevel will be replaced with GTValue. For complex number comparation is applied with norm of complex value.

See Also: clVector::ThresholdLT, clVector::ThresholdGT_LT
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 2: TOpenCLMtxVec *ThresholdGT(double GTLevel, double GTValue, int Index, int Len) const;

Perfrom "greater than" threshold operation on the calling object values in range [Index]..[Index+Len-1].

#NameTypeDescription
1GTLeveldouble
2GTValuedouble
3Indexint
4Lenint
Remarks:

An exception is raised if array borders are overrun/underrun.

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 3: TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, double GTValue) const;

Perform "greater than" threshold operation on all Vec object values.

#NameTypeDescription
1VecTOpenCLMtxVec *
2GTLeveldouble
3GTValuedouble
Remarks:

Store the results in calling object. Size and clVector::Complex properties of the calling object are adjusted automatically.

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 4: TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, double GTValue, int VecIndex, int Index, int Len) const;

Perform "greater than" threshold operation on Vec elements from range [VecIndex]..[VecIndex+Len-1].

#NameTypeDescription
1VecTOpenCLMtxVec *
2GTLeveldouble
3GTValuedouble
4VecIndexint
5Indexint
6Lenint
Remarks:

Store the results in the calling object elements [Index]..[Index+Len-1]. Size and clVector::Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun/underrun. An exception will be raised if Vec.Complex and Complex of the calling object are not equal.

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 5: TOpenCLMtxVec *ThresholdGT(double GTLevel, const TCplx &GTValue) const;

Perfrom "greater than" threshold operation for complex numbers.

#NameTypeDescription
1GTLeveldouble
2GTValueconst TCplx &
Remarks:

If the calling object contains none Complex values, an exception will be raised.

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 6: TOpenCLMtxVec *ThresholdGT(double GTLevel, const TCplx &GTValue, int Index, int Len) const;

Perfrom "greater than" threshold operation for complex numbers on the calling object values in range [Index]..[Index+Len-1].

#NameTypeDescription
1GTLeveldouble
2GTValueconst TCplx &
3Indexint
4Lenint
Remarks:

An exception is raised if array borders are overrun/underrun. If the calling object contains none Complex values, an exception will be raised.

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 7: TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, const TCplx &GTValue) const;

Perform "greater than" threshold operation for complex numbers on all Vec object values.

#NameTypeDescription
1VecTOpenCLMtxVec *
2GTLeveldouble
3GTValueconst TCplx &
Remarks:

Store the results in calling object. Size and clVector::Complex properties of the calling object are adjusted automatically. If Vec object contains none Complex values, an exception will be raised.

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 8: TOpenCLMtxVec *ThresholdGT(TOpenCLMtxVec *Vec, double GTLevel, const TCplx &GTValue, int VecIndex, int Index, int Len) const;

Perform "greater than" threshold operation for complex numbers on Vec elements from range [VecIndex]..[VecIndex+Len-1].

#NameTypeDescription
1VecTOpenCLMtxVec *
2GTLeveldouble
3GTValueconst TCplx &
4VecIndexint
5Indexint
6Lenint
Remarks:

Store the results in the calling object elements [Index]..[Index+Len-1]. Size and clVector::Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun/underrun. If Vec object or calling object contain none Complex values, an exception will be raised.

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler