Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec) const; | Conjugate and multiply. |
| 2 | TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len) const; | Conjugate Vec elements Vec[VecIndex]..Vec[VecIndex+Len-1] and multiply them with corresponding calling object elements [Index]..[Index+Len-1]. |
| 3 | TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec1, TOpenCLMtxVec *Vec2) const; | Conjugate each of Vec2 elements and multiply them with corresponding elements in Vec1. |
| 4 | TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec1, TOpenCLMtxVec *Vec2, int Vec1Index, int Vec2Index, int Index, int Len) const; | Conjugate Vec2 elements [Vec2Index]..[Vec2Index+Len-1] and multiply them with corresponding Vec1 elements [Vec1Index]..[Vec1Index+Len-1]. |
Overload 1: TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec) const;
Conjugate and multiply.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec * |
Conjugate each of Vec elements and multiply them with corresponding elements in the calling object. The results are stored in the calling object. Size and clMatrix::Complex properties of the calling object are set implicitly to match Vec.
Overload 2: TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len) const;
Conjugate Vec elements Vec[VecIndex]..Vec[VecIndex+Len-1] and multiply them with corresponding calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
The results are stored in the calling object elements [Index]..[Index+Len-1]. Size and clMatrix::Complex properties are not set.
An exception is raised if array borders are overrun or underrun.
Overload 3: TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec1, TOpenCLMtxVec *Vec2) const;
Conjugate each of Vec2 elements and multiply them with corresponding elements in Vec1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec1 | TOpenCLMtxVec * | |
| 2 | Vec2 | TOpenCLMtxVec * |
The results are stored in the calling object. Size and clMatrix::Complex properties of the calling object are set implicitly to match Vec1 and Vec2 objects.
Overload 4: TOpenCLMtxVec *ConjMul(TOpenCLMtxVec *Vec1, TOpenCLMtxVec *Vec2, int Vec1Index, int Vec2Index, int Index, int Len) const;
Conjugate Vec2 elements [Vec2Index]..[Vec2Index+Len-1] and multiply them with corresponding Vec1 elements [Vec1Index]..[Vec1Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec1 | TOpenCLMtxVec * | |
| 2 | Vec2 | TOpenCLMtxVec * | |
| 3 | Vec1Index | int | |
| 4 | Vec2Index | int | |
| 5 | Index | int | |
| 6 | Len | int |
The results are stored in the calling object elements [Index]..[Index+Len-1]. Size and clMatrix::Complex properties of the calling vector must be set explicitly. An exception is raised if array borders are overrun.