TOpenCLVector::FlipConj Method

Overload List

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

Overload 1: TOpenCLBase *FlipConj(TOpenCLBase *X, int XIndex, int Index, int Len);

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

Overload 2: TOpenCLMtxVec *FlipConj();

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

Remarks:

Performs the following transformation:

a + i*bi ==> b - i*a

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

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

Overload 3: TOpenCLMtxVec *FlipConj(int Index, int Len);

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

#NameTypeDescription
1Indexint
2Lenint
Remarks:

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

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

Overload 4: TOpenCLMtxVec *FlipConj(TOpenCLMtxVec *X);

Flip all X object complex elements.

#NameTypeDescription
1XTOpenCLMtxVec *
Remarks:

Store the results in calling object. Size and TOpenCLBase::Complex property of calling object are adjusted automatically.

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

Overload 5: TOpenCLMtxVec *FlipConj(TOpenCLMtxVec *X, int XIndex, int Index, int Len);

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

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

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

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