Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function MulI: TOpenCLMtxVec; | Multiply elements by imaginary unit I. |
| └ indexed: function MulI(Index: Integer; Len: Integer): TOpenCLMtxVec; | ||
| 2 | function MulI(const X: TOpenCLMtxVec): TOpenCLMtxVec; | Multiply X elements with I and store the result in the calling object. |
| └ indexed: function MulI(const X: TOpenCLMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec; |
Overload 1: function MulI: TOpenCLMtxVec;
Multiply elements by imaginary unit I.
Result: stored in self (calling object), returns self for chaining
Indexed: function MulI(Index: Integer; Len: Integer): TOpenCLMtxVec;
Multipy 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: TOpenCLMtxVec): TOpenCLMtxVec;
Multiply X elements with I and store the result in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec |
Result: stored in self (calling object), returns self for chaining
Indexed: function MulI(const X: TOpenCLMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
Multipy X elements [XIndex]..[XIndex+Len-1] with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec | |
| 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:
Xtore the result in the calling object at locations [Index]..[Index+Len-1].