Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt FindAndSplit(TMtxVec *a, const DewString &op, TMtxVec *b, TVec *MaskVec, TVec *NotMaskVec); | Finds the masks for a vector and splits it. |
| 2 | VectorInt FindAndSplit(TMtxVec *a, const DewString &op, const TCplx &b, TVec *MaskVec, TVec *NotMaskVec); | Finds the masks for a vector and splits it. |
| 3 | VectorInt FindAndSplit(TMtxVec *a, const DewString &op, const double b, TVec *MaskVec, TVec *NotMaskVec); | Finds the masks for a vector and splits it. |
Overload 1: VectorInt FindAndSplit(TMtxVec *a, const DewString &op, TMtxVec *b, TVec *MaskVec, TVec *NotMaskVec);
Finds the masks for a vector and splits it.
Remarks:
The op can be "<", ">", "=", "<=",">=". Use ScatterByMask to distribute MaskVec and NotMaskVec back to its location.
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler
Overload 2: VectorInt FindAndSplit(TMtxVec *a, const DewString &op, const TCplx &b, TVec *MaskVec, TVec *NotMaskVec);
Finds the masks for a vector and splits it.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVec * | |
| 2 | op | const DewString & | |
| 3 | b | const TCplx & | |
| 4 | MaskVec | TVec * | |
| 5 | NotMaskVec | TVec * |
Remarks:
The op can be "<", ">", "=", "<=",">=". The b parameter is of TCplx type. Use ScatterByMask to distribute MaskVec and NotMaskVec back to its location.
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler
Overload 3: VectorInt FindAndSplit(TMtxVec *a, const DewString &op, const double b, TVec *MaskVec, TVec *NotMaskVec);
Finds the masks for a vector and splits it.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVec * | |
| 2 | op | const DewString & | |
| 3 | b | const double | |
| 4 | MaskVec | TVec * | |
| 5 | NotMaskVec | TVec * |
Remarks:
The op can be "<", ">", "=", "<=",">=". The b parameter is of double type. Use ScatterByMask to distribute MaskVec and NotMaskVec back to its location.
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler