Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void CplxToReal(TOpenCLBase *ReVec, TOpenCLBase *ImVec, int ReIndex, int ImIndex, int Index, int Len); | |
| 2 | void CplxToReal(TOpenCLValue *ReVec, TOpenCLValue *ImVec); | Split complex calling object in real and imaginary part. |
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(TOpenCLValue *ReVec, TOpenCLValue *ImVec);
Split complex calling object in real and imaginary part.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ReVec | TOpenCLValue * | |
| 2 | ImVec | TOpenCLValue * |
Remarks:
Split calling object into real and imaginary components. Stores real component in ReVec and imaginary component in ImVec. FloatPrecision 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: TOpenCLValue::RealToCplx
Declared in Dew::Math::TOpenCLValue · Dew.Math/clMtxVec.h · Cross-compiler