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