Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function FlipConj: TOpenCLMtxVec; | Flips the real and imaginary part of complex numbers and conjugates the complex numbers. |
| └ indexed: function FlipConj(Index: Integer; Len: Integer): TOpenCLMtxVec; | ||
| 2 | function FlipConj(const X: TOpenCLMtxVec): TOpenCLMtxVec; | Flip all X object complex elements. |
| └ indexed: function FlipConj(const X: TOpenCLMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec; |
Overload 1: function FlipConj: TOpenCLMtxVec;
Flips the real and imaginary part of complex numbers and conjugates the complex numbers.
Result: stored in self (calling object), returns self for chaining
Performs the following transformation:
a + i*bi ==> b - i*a
Method flips the real and imaginary part and conjugates calling object complex elements in-place.
Indexed: function FlipConj(Index: Integer; Len: Integer): TOpenCLMtxVec;
Flip calling object complex elements [Index]..[Index+Len-1] 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
An exception is raised if calling object clMatrix.Complex property is false or if array borders are overrun/underrun.
Overload 2: function FlipConj(const X: TOpenCLMtxVec): TOpenCLMtxVec;
Flip all X object complex elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec |
Result: stored in self (calling object), returns self for chaining
Store the results in calling object. Size and clMatrix.Complex property of calling object are adjusted automatically.
Indexed: function FlipConj(const X: TOpenCLMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
Flip X object complex elements [XIndex]..[XIndex+Len-1].
| # | 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
Store the results in calling object elements [Index]..[Index+Len-1]. An exception is raised if calling object clMatrix.Complex property is false or if array borders are overrun/underrun.