Vector::ThresholdLT Method

Overload List

#SignatureDescription
1TMtxVec *ThresholdLT(double LTLevel, double LTValue) const;Threshold less than operation.
2TMtxVec *ThresholdLT(double LTLevel, double LTValue, int Index, int Len) const;Perfrom "less than" threshold operation on the calling object values in range [Index]..[Index+Len-1].
3TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, double LTValue) const;Perform "less than" threshold operation on all Vec object values and store the results in calling object.
4TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, double LTValue, int VecIndex, int Index, int Len) const;Perform "less than" threshold operation on Vec elements from range [VecIndex]..[VecIndex+Len-1] and store the results in the calling object elements [Index]..[Index+Len-1].
5TMtxVec *ThresholdLT(double LTLevel, TCplx LTValue) const;Perfrom "less than" threshold operation for complex numbers.
6TMtxVec *ThresholdLT(double LTLevel, TCplx LTValue, int Index, int Len) const;Perfrom "less than" threshold operation for complex numbers on the calling object values in range [Index]..[Index+Len-1].
7TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, TCplx LTValue) const;Perform "less than" threshold operation for complex numbers on all Vec object values and store the results in calling object.
8TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, TCplx LTValue, int VecIndex, int Index, int Len) const;Perform "less than" threshold operation for complex numbers on Vec elements from range [VecIndex]..[VecIndex+Len-1] and store the results in the calling object elements [Index]..[Index+Len-1].

Overload 1: TMtxVec *ThresholdLT(double LTLevel, double LTValue) const;

Threshold less than operation.

#NameTypeDescription
1LTLeveldouble
2LTValuedouble
Remarks:

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

See Also: Vector::ThresholdGT, Vector::ThresholdGT_LT
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 2: TMtxVec *ThresholdLT(double LTLevel, double LTValue, int Index, int Len) const;

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

#NameTypeDescription
1LTLeveldouble
2LTValuedouble
3Indexint
4Lenint
Remarks:

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

Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 3: TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, double LTValue) const;

Perform "less than" threshold operation on all Vec object values and store the results in calling object.

#NameTypeDescription
1VecTMtxVec *
2LTLeveldouble
3LTValuedouble
Remarks:

Size and Vector::Complex properties of the calling object are adjusted automatically.

Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 4: TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, double LTValue, int VecIndex, int Index, int Len) const;

Perform "less than" threshold operation on Vec elements from range [VecIndex]..[VecIndex+Len-1] and store the results in the calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1VecTMtxVec *
2LTLeveldouble
3LTValuedouble
4VecIndexint
5Indexint
6Lenint
Remarks:

Size and Vector::Complex properties of the calling object must be set explicitly. An exception is raised if Vector::ConditionCheck is true and 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::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 5: TMtxVec *ThresholdLT(double LTLevel, TCplx LTValue) const;

Perfrom "less than" threshold operation for complex numbers.

#NameTypeDescription
1LTLeveldouble
2LTValueTCplx
Remarks:

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

Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 6: TMtxVec *ThresholdLT(double LTLevel, TCplx LTValue, int Index, int Len) const;

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

#NameTypeDescription
1LTLeveldouble
2LTValueTCplx
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::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 7: TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, TCplx LTValue) const;

Perform "less than" threshold operation for complex numbers on all Vec object values and store the results in calling object.

#NameTypeDescription
1VecTMtxVec *
2LTLeveldouble
3LTValueTCplx
Remarks:

Size and Vector::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::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 8: TMtxVec *ThresholdLT(TMtxVec *Vec, double LTLevel, TCplx LTValue, int VecIndex, int Index, int Len) const;

Perform "less than" threshold operation for complex numbers on Vec elements from range [VecIndex]..[VecIndex+Len-1] and store the results in the calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1VecTMtxVec *
2LTLeveldouble
3LTValueTCplx
4VecIndexint
5Indexint
6Lenint
Remarks:

Size and Vector::Complex properties of the calling object must be set explicitly. An exception is raised if Vector::ConditionCheck is true and array borders are overrun/underrun. If Vec object or calling object contain none Complex values, an exception will be raised.

Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler