Vector::FlipConj Method

Overload List

#SignatureDescription
1TMtxVec *FlipConj() const;Flips the real and imaginary part of complex numbers and conjugates the complex numbers.
2TMtxVec *FlipConj(int Index, int Len) const;Flip calling object complex elements [Index]..[Index+Len-1] in-place.
3TMtxVec *FlipConj(TMtxVec *X) const;Flip all X object complex elements and store the results in calling object.
4TMtxVec *FlipConj(TMtxVec *X, int XIndex, int Index, int Len) const;Flip X object complex elements [XIndex]..[XIndex+Len-1].

Overload 1: TMtxVec *FlipConj() const;

Flips the real and imaginary part of complex numbers and conjugates the complex numbers.

Remarks:

Performs the following operation:

a + bi ==> b - ai

Method flips the real and imaginary part and conjugates calling object complex elements in-place.

See Also: Vector::Flip, Vector::Conj
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 2: TMtxVec *FlipConj(int Index, int Len) const;

Flip calling object complex elements [Index]..[Index+Len-1] in-place.

#NameTypeDescription
1Indexint
2Lenint
Remarks:

An exception is raised if calling object Vector::Complex property is false or if array borders are overrun/underrun.

Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 3: TMtxVec *FlipConj(TMtxVec *X) const;

Flip all X object complex elements and store the results in calling object.

#NameTypeDescription
1XTMtxVec *
Remarks:

Size and Vector::Complex property of calling object are adjusted automatically.

Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler

Overload 4: TMtxVec *FlipConj(TMtxVec *X, int XIndex, int Index, int Len) const;

Flip X object complex elements [XIndex]..[XIndex+Len-1].

#NameTypeDescription
1XTMtxVec *
2XIndexint
3Indexint
4Lenint
Remarks:

Store the results in calling object elements [Index]..[Index+Len-1]. An exception is raised if calling object Vector::Complex property is false or if array borders are overrun/underrun.

Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler