Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLBase *ImagPart(TOpenCLBase *Vec, int VecIndex, int Index, int Len); | |
| 2 | TOpenCLMtxVec *ImagPart(TOpenCLMtxVec *Vec); | Gets the imaginary part of a complex object. |
| 3 | TOpenCLMtxVec *ImagPart(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len); | Gets the imaginary part of complex object Vec elements [VecIndex]..[VecIndex+Len-1]. |
Overload 1: TOpenCLBase *ImagPart(TOpenCLBase *Vec, int VecIndex, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLBase * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler
Overload 2: TOpenCLMtxVec *ImagPart(TOpenCLMtxVec *Vec);
Gets the imaginary part of a complex object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec * |
Remarks:
Gets the imaginary part of a complex object Vec and stores the real results in the calling object. Size and TOpenCLBase::Complex properties of the calling object are set implicitly to match Vec object. Vec TOpenCLBase::Complex must be true otherwise the exception will be raised.
See Also: TOpenCLMatrix::RealPart, TOpenCLMatrix::RealToCplx
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler
Overload 3: TOpenCLMtxVec *ImagPart(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len);
Gets the imaginary part of complex object Vec elements [VecIndex]..[VecIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Stores the result in calling object. An exception is raised if the calling object is complex, if Vec is not complex or if array borders are overrun/underrun.
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler