Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void CplxToReal(TOpenCLBase *ReVec, TOpenCLBase *ImVec, int ReIndex, int ImIndex, int Index, int Len); | |
| 2 | void CplxToReal(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec); | Split complex calling object in real and imaginary part. |
| 3 | void CplxToReal(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec, int ReIndex, int ImIndex, int Index, int Len); | Split calling object elements [Index]..[Index+Len-1] into real and imaginary components. |
Overload 1: void CplxToReal(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 |
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler
Overload 2: void CplxToReal(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec);
Split complex calling object in real and imaginary part.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ReVec | TOpenCLMtxVec * | |
| 2 | ImVec | TOpenCLMtxVec * |
Remarks:
Split calling object into real and imaginary components. Store all real components in ReVec and all imaginary components in ImVec. Size and TOpenCLBase::Complex properties of ReVec and ImVec are set implicitly to match with the calling vector. An execption is raised if calling object is not complex.
See Also: TOpenCLVector::RealToCplx
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler
Overload 3: void CplxToReal(TOpenCLMtxVec *ReVec, TOpenCLMtxVec *ImVec, int ReIndex, int ImIndex, int Index, int Len);
Split calling object elements [Index]..[Index+Len-1] into real and imaginary components.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ReVec | TOpenCLMtxVec * | |
| 2 | ImVec | TOpenCLMtxVec * | |
| 3 | ReIndex | int | |
| 4 | ImIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Remarks:
Store real components in ReVec elements [ReIndex]..[ReIndex+Len-1] and imaginary components in ImVec elements [ImIndex]..[ImIndex+Len-1]. Size and TOpenCLBase::Complex properties must be set explicitly. An exception is raised if array borders are overrun or underrun.
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler