Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec MulI | Multiply elements by imaginary unit I. |
| └ indexed: TMtxVec MulI(Int32 Index, Int32 Len) | ||
| 2 | TMtxVec MulI(TMtxVec X) | Multiply X elements with I and store the result in the calling object. |
| └ indexed: TMtxVec MulI(TMtxVec X, Int32 XIndex, Int32 Index, Int32 Len) |
Overload 1: TMtxVec MulI
Multiply elements by imaginary unit I.
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec MulI(Int32 Index, Int32 Len)
Multipy calling object elements [Index]..[Index+Len-1] with I in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: TMtxVec MulI(TMtxVec X)
Multiply X elements with I and store the result in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec MulI(TMtxVec X, Int32 XIndex, Int32 Index, Int32 Len)
Multipy X elements [XIndex]..[XIndex+Len-1] with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
Xtore the result in the calling object at locations [Index]..[Index+Len-1].