Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLBase *RealToCplx(TOpenCLBase *ReVec, TOpenCLBase *ImVec, int ReIndex, int ImIndex, int Index, int Len); | |
| 2 | TOpenCLMtxVec *RealToCplx(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec); | Constructs a complex object from two real objects. |
| 3 | TOpenCLMtxVec *RealToCplx(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec, int ReIndex, int ImIndex, int Index, int Len); | Construct a complex object from the ReVec elements [ReIndex]..[ReIndex+Len-1] (real part) and the ImVec elements [ImIndex]..[ImIndex+Len-1] (imaginary part). |
Overload 1: TOpenCLBase *RealToCplx(TOpenCLBase *ReVec, TOpenCLBase *ImVec, int ReIndex, int ImIndex, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ReVec | TOpenCLBase * | |
| 2 | ImVec | TOpenCLBase * | |
| 3 | ReIndex | int | |
| 4 | ImIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Overload 2: TOpenCLMtxVec *RealToCplx(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec);
Constructs a complex object from two real objects.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ReVec | TOpenCLMtxVec * | |
| 2 | ImVec | TOpenCLMtxVec * |
Construct a complex object from the ReVec (real part) and the ImVec (imaginary part) objects. The results are stored in the calling object. Size and TOpenCLBase::Complex properties of the calling object are set implicitly to match ReVec and ImVec objects. An exception is raised if ReVec or ImVec TOpenCLBase::Complex property is True.
Overload 3: TOpenCLMtxVec *RealToCplx(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec, int ReIndex, int ImIndex, int Index, int Len);
Construct a complex object from the ReVec elements [ReIndex]..[ReIndex+Len-1] (real part) and the ImVec elements [ImIndex]..[ImIndex+Len-1] (imaginary part).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ReVec | TOpenCLMtxVec * | |
| 2 | ImVec | TOpenCLMtxVec * | |
| 3 | ReIndex | int | |
| 4 | ImIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
The results are stored to calling object elements [Index]..[Index+Len-1]. Size and TOpenCLBase::Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun. An exception is also raised if ReVec or ImVec TOpenCLBase::Complex property is True.