TOpenCLVector::Expj Method

Overload List

#SignatureDescription
1TOpenCLBase *Expj(TOpenCLBase *Omega, int OmegaIndex, int Index, int Len);
2TOpenCLMtxVec *Expj();A complex exponential e^(j*Omega)).
3TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega);Calculate the e^(j*Omega), a complex exponential.
4TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega, int OmegaIndex, int Index, int Len);Calculate the complex exponential for Omega elements [OmegaIndex]..[OmegaIndex+Len-1].

Overload 1: TOpenCLBase *Expj(TOpenCLBase *Omega, int OmegaIndex, int Index, int Len);

#NameTypeDescription
1OmegaTOpenCLBase *
2OmegaIndexint
3Indexint
4Lenint
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler

Overload 2: TOpenCLMtxVec *Expj();

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 TOpenCLVector::Exp method instead.

See Also: TOpenCLVector::Exp
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 3: TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega);

Calculate the e^(j*Omega), a complex exponential.

#NameTypeDescription
1OmegaTOpenCLMtxVec *
Remarks:

Omega must be a real object. If omega is complex, then use the TOpenCLVector::Exp method.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 4: TOpenCLMtxVec *Expj(TOpenCLMtxVec *Omega, int OmegaIndex, int Index, int Len);

Calculate the complex exponential for Omega elements [OmegaIndex]..[OmegaIndex+Len-1].

#NameTypeDescription
1OmegaTOpenCLMtxVec *
2OmegaIndexint
3Indexint
4Lenint
Remarks:

Store the results in calling object elemets [Index]..[Index+Len-1]. Size and TOpenCLBase::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::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler