Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function FindMask(const a: TMtx; const op: string; const b: TCplx): TMtxVecInt; | Finds a vector mask. |
| 2 | function FindMask(const a: TMtx; const op: string; const b: Double): TMtxVecInt; | The b parameter is of double type. |
| 3 | function FindMask(const a: TMtxVec; const op: string; const b: TMtxVec): TMtxVecInt; | The b parameter is of TMtxVec type. |
| 4 | function FindMask(const a: TMtxVecInt; const op: string; const b: TMtxVecInt): TMtxVecInt; | The b parameter is of TMtxVec type. |
| 5 | function FindMask(const a: TMtxVecInt; const op: string; const b: Integer): TMtxVecInt; | Finds a vector mask. |
Overload 1: function FindMask(const a: TMtx; const op: string; const b: TCplx): TMtxVecInt;
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: function FindMask(const a: TMtx; const op: string; const b: Double): TMtxVecInt;
The b parameter is of double type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtx | |
| 2 | op | string | |
| 3 | b | Double |
Result: stored in self (calling object), returns self for chaining
Overload 3: function FindMask(const a: TMtxVec; const op: string; const b: TMtxVec): TMtxVecInt;
The b parameter is of TMtxVec type.
Result: stored in self (calling object), returns self for chaining
Overload 4: function FindMask(const a: TMtxVecInt; const op: string; const b: TMtxVecInt): TMtxVecInt;
The b parameter is of TMtxVec type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt | |
| 2 | op | string | |
| 3 | b | TMtxVecInt |
Result: stored in self (calling object), returns self for chaining
Overload 5: function FindMask(const a: TMtxVecInt; const op: string; const b: Integer): TMtxVecInt;
Finds a vector mask.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt | |
| 2 | op | string | |
| 3 | b | Integer |
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.