Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *ThresholdLT(const double LTLevel, const double LTValue); | Threshold less than operation. |
| 2 | TMtxVec *ThresholdLT(const double LTLevel, const double LTValue, int Index, int Len); | Perfrom "less than" threshold operation on the calling object values in range [Index]..[Index+Len-1]. |
| 3 | TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const double LTValue); | Perform "less than" threshold operation on all Vec object values. |
| 4 | TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const double LTValue, int VecIndex, int Index, int Len); | Perform "less than" threshold operation on Vec elements from range [VecIndex]..[VecIndex+Len-1]. |
| 5 | TMtxVec *ThresholdLT(const double LTLevel, const TCplx <Value); | Perfrom "less than" threshold operation for complex numbers. |
| 6 | TMtxVec *ThresholdLT(const double LTLevel, const TCplx <Value, int Index, int Len); | Perfrom "less than" threshold operation for complex numbers on the calling object values in range [Index]..[Index+Len-1]. |
| 7 | TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const TCplx <Value); | Perform "less than" threshold operation for complex numbers on all Vec object values. |
| 8 | TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const TCplx <Value, int VecIndex, int Index, int Len); | Perform "less than" threshold operation for complex numbers on Vec elements from range [VecIndex]..[VecIndex+Len-1]. |
Overload 1: TMtxVec *ThresholdLT(const double LTLevel, const double LTValue);
Threshold less than operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LTLevel | const double | |
| 2 | LTValue | const double |
Perform operation on all calling object values. The LTValue parameter is a 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.
Overload 2: TMtxVec *ThresholdLT(const double LTLevel, const double LTValue, int Index, int Len);
Perfrom "less than" threshold operation on the calling object values in range [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LTLevel | const double | |
| 2 | LTValue | const double | |
| 3 | Index | int | |
| 4 | Len | int |
An exception is raised if array borders are overrun/underrun.
Overload 3: TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const double LTValue);
Perform "less than" threshold operation on all Vec object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * | |
| 2 | LTLevel | const double | |
| 3 | LTValue | const double |
Store the results in calling object. Size and TSparseMtx::Complex properties of the calling object are adjusted automatically.
Overload 4: TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const double LTValue, int VecIndex, int Index, int Len);
Perform "less than" threshold operation on Vec elements from range [VecIndex]..[VecIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * | |
| 2 | LTLevel | const double | |
| 3 | LTValue | const double | |
| 4 | VecIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Store the results in the calling object elements [Index]..[Index+Len-1]. Size and TSparseMtx::Complex properties of the calling object must be set explicitly. An exception is raised if TSparseMtx::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.
Overload 5: TMtxVec *ThresholdLT(const double LTLevel, const TCplx <Value);
Perfrom "less than" threshold operation for complex numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LTLevel | const double | |
| 2 | LTValue | const TCplx & |
If the calling object contains none Complex values, an exception will be raised.
Overload 6: TMtxVec *ThresholdLT(const double LTLevel, const TCplx <Value, int Index, int Len);
Perfrom "less than" threshold operation for complex numbers on the calling object values in range [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | LTLevel | const double | |
| 2 | LTValue | const TCplx & | |
| 3 | Index | int | |
| 4 | Len | int |
An exception is raised if array borders are overrun/underrun. If the calling object contains none Complex values, an exception will be raised.
Overload 7: TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const TCplx <Value);
Perform "less than" threshold operation for complex numbers on all Vec object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * | |
| 2 | LTLevel | const double | |
| 3 | LTValue | const TCplx & |
Store the results in calling object. Size and TSparseMtx::Complex properties of the calling object are adjusted automatically. If Vec object contains none Complex values, an exception will be raised.
Overload 8: TMtxVec *ThresholdLT(TMtxVec *Vec, const double LTLevel, const TCplx <Value, int VecIndex, int Index, int Len);
Perform "less than" threshold operation for complex numbers on Vec elements from range [VecIndex]..[VecIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * | |
| 2 | LTLevel | const double | |
| 3 | LTValue | const TCplx & | |
| 4 | VecIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Store the results in the calling object elements [Index]..[Index+Len-1]. Size and TSparseMtx::Complex properties of the calling object must be set explicitly. An exception is raised if TSparseMtx::ConditionCheck is true and array borders are overrun/underrun. If Vec object or calling object contain none Complex values, an exception will be raised.