TSparseMtx::Expj Method

Overload List

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

Overload 1: TMtxVec *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 TSparseMtx::Exp method instead.

See Also: TSparseMtx::Exp
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 2: TMtxVec *Expj(TMtxVec *Omega);

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

#NameTypeDescription
1OmegaTMtxVec *
Remarks:

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

Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 3: TMtxVec *Expj(TMtxVec *Omega, int OmegaIndex, int Index, int Len);

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

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

Store the results in calling object elemets [Index]..[Index+Len-1]. Size and TSparseMtx::Complex properties of the calling vector must be set explicitly. An exception is raised if TSparseMtx::ConditionCheck is True and array borders are overrun or underrun.

Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler