Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *FindMask(TMtx *a, const DewString &op, const TCplx &b) const; | Finds a vector mask. |
| 2 | TMtxVecInt *FindMask(TMtx *a, const DewString &op, const double b) const; | The b parameter is of double type. |
| 3 | TMtxVecInt *FindMask(TMtxVec *a, const DewString &op, TMtxVec *b) const; | The b parameter is of TMtxVec type. |
| 4 | TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, const int b) const; | Finds a vector mask. |
| 5 | TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, TMtxVecInt *b) const; | The b parameter is of TMtxVec type. |
Overload 1: TMtxVecInt *FindMask(TMtx *a, const DewString &op, const TCplx &b) const;
Finds a vector mask.
The calling vector will hold the those elements where the Op comparison between a and b is True. Op string parameter can be < , > , >= , <= , = or <>.
The calling vector will store the mask, 1 at those index locations where the Op comparison was True and 0 at those index locations where the Op comparison was false.
Overload 2: TMtxVecInt *FindMask(TMtx *a, const DewString &op, const double b) const;
The b parameter is of double type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtx * | |
| 2 | op | const DewString & | |
| 3 | b | const double |
Overload 3: TMtxVecInt *FindMask(TMtxVec *a, const DewString &op, TMtxVec *b) const;
The b parameter is of TMtxVec type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVec * | |
| 2 | op | const DewString & | |
| 3 | b | TMtxVec * |
Overload 4: TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, const int b) const;
Finds a vector mask.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt * | |
| 2 | op | const DewString & | |
| 3 | b | const int |
The calling vector will hold the those elements where the Op comparison between a and b is True. Op string parameter can be < , > , >= , <= , = or <>.
The calling vector will store the mask, 1 at those index locations where the Op comparison was True and 0 at those index locations where the Op comparison was false.
Overload 5: TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, TMtxVecInt *b) const;
The b parameter is of TMtxVec type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt * | |
| 2 | op | const DewString & | |
| 3 | b | TMtxVecInt * |