Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt FindMask(TMtx a, String op, TCplx b) | Finds a vector mask. |
| 2 | TMtxVecInt FindMask(TMtx a, String op, Double b) | The b parameter is of double type. |
| 3 | TMtxVecInt FindMask(TMtxVec a, String op, TMtxVec b) | The b parameter is of Dew.Math.TMtxVec type. |
| 4 | TMtxVecInt FindMask(TMtxVecInt a, String op, TMtxVecInt b) | The b parameter is of Dew.Math.TMtxVec type. |
| 5 | TMtxVecInt FindMask(TMtxVecInt a, String op, Int32 b) | Finds a vector mask. |
Overload 1: TMtxVecInt FindMask(TMtx a, String op, TCplx b)
Finds a vector mask.
Result: stored in self (calling object), returns self for chaining
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, String op, Double b)
The b parameter is of double type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtx | source TMtx |
| 2 | op | String | |
| 3 | b | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Overload 3: TMtxVecInt FindMask(TMtxVec a, String op, TMtxVec b)
The b parameter is of Dew.Math.TMtxVec type.
Result: stored in self (calling object), returns self for chaining
Overload 4: TMtxVecInt FindMask(TMtxVecInt a, String op, TMtxVecInt b)
The b parameter is of Dew.Math.TMtxVec type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | op | String | |
| 3 | b | TMtxVecInt | source TVecInt or TMtxInt |
Result: stored in self (calling object), returns self for chaining
Overload 5: TMtxVecInt FindMask(TMtxVecInt a, String op, Int32 b)
Finds a vector mask.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | op | String | |
| 3 | b | Int32 |
Result: stored in self (calling object), returns self for chaining
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.