Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLMtxVec *FlipConj() const; | Flips the real and imaginary part of complex numbers and conjugates the complex numbers. |
| 2 | TOpenCLMtxVec *FlipConj(int Index, int Len) const; | Flip calling object complex elements [Index]..[Index+Len-1] in-place. |
| 3 | TOpenCLMtxVec *FlipConj(TOpenCLMtxVec *X) const; | Flip all X object complex elements. |
| 4 | TOpenCLMtxVec *FlipConj(TOpenCLMtxVec *X, int XIndex, int Index, int Len) const; | Flip X object complex elements [XIndex]..[XIndex+Len-1]. |
Overload 1: TOpenCLMtxVec *FlipConj() const;
Flips the real and imaginary part of complex numbers and conjugates the complex numbers.
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.
Overload 2: TOpenCLMtxVec *FlipConj(int Index, int Len) const;
Flip calling object complex elements [Index]..[Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
An exception is raised if calling object clVector::Complex property is false or if array borders are overrun/underrun.
Overload 3: TOpenCLMtxVec *FlipConj(TOpenCLMtxVec *X) const;
Flip all X object complex elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec * |
Store the results in calling object. Size and clVector::Complex property of calling object are adjusted automatically.
Overload 4: TOpenCLMtxVec *FlipConj(TOpenCLMtxVec *X, int XIndex, int Index, int Len) const;
Flip X object complex elements [XIndex]..[XIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec * | |
| 2 | XIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Store the results in calling object elements [Index]..[Index+Len-1]. An exception is raised if calling object clVector::Complex property is false or if array borders are overrun/underrun.