Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function MulI: TMtxVec; | Multiply elements by imaginary unit I. |
| └ indexed: function MulI(Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function MulI(const X: TMtxVec): TMtxVec; | Multiply X elements with I. |
| └ indexed: function MulI(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function MulI: TMtxVec;
Multiply elements by imaginary unit I.
Result: stored in self (calling object), returns self for chaining
Remarks:
Multiply calling vector elements with "I".
Indexed: function MulI(Index: Integer; Len: Integer): TMtxVec;
Multiply calling object elements [Index]..[Index+Len-1] with I in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Integer | start index |
| 2 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: function MulI(const X: TMtxVec): TMtxVec;
Multiply X elements with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec |
Result: stored in self (calling object), returns self for chaining
Remarks:
Store the result in the calling object.
Indexed: function MulI(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Multipy X elements [XIndex]..[XIndex+Len-1] with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | |
| 2 | XIndex | Integer | X start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
Store the result in the calling object at locations [Index]..[Index+Len-1].