Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLMtxVec *Expj() const; | A complex exponential e^(j*Omega)). |
| 2 | TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega) const; | Calculate the e^(j*Omega), a complex exponential. |
| 3 | TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega, int OmegaIndex, int Index, int Len) const; | Calculate the complex exponential for Omega elements [OmegaIndex]..[OmegaIndex+Len-1]. |
Overload 1: TOpenCLMtxVec *Expj() const;
A complex exponential e^(j*Omega)).
Remarks:
Calculate the calling object complex exponential in-place. An exception is raised if calling object is complex. If object is complex, you should use the clVector::Exp method instead.
See Also: clVector::Exp
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 2: TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega) const;
Calculate the e^(j*Omega), a complex exponential.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Omega | TOpenCLMtxVec * |
Remarks:
Omega must be a real object. If omega is complex, then use the clVector::Exp method.
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 3: TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega, int OmegaIndex, int Index, int Len) const;
Calculate the complex exponential for Omega elements [OmegaIndex]..[OmegaIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Omega | TOpenCLMtxVec * | |
| 2 | OmegaIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Store the results in calling object elemets [Index]..[Index+Len-1]. Size and clVector::Complex properties of the calling vector must be set explicitly. An exception is raised if array borders are overrun or underrun.
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler