TOpenCLVector::Reverse Method

Overload List

#SignatureDescription
1TOpenCLMtxVec *Reverse(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len);Reverse vector elements.
2TOpenCLMtxVec *Reverse(int Index, int Len);Reverses the calling object elements [Index]..[Index+Len-1].
3TOpenCLVector *Reverse(TOpenCLMtxVec *Vec);Reverse all Vec elements.
4TOpenCLVector *Reverse();

Overload 1: TOpenCLMtxVec *Reverse(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len);

Reverse vector elements.

#NameTypeDescription
1VecTOpenCLMtxVec *
2VecIndexint
3Indexint
4Lenint
Remarks:

The method reverses Vec vector elements from [VecIndex].. [VecIndex+Len-1] and stores them in the calling vector from [Index]...[Index+Len-1] by using the following equation:

V[k]=Vec[Nk],0kN,where N=Vec.Length1\text{V}[k]=\text{Vec}[N-k],\quad 0\leq k \leq N, \quad \text{where } N=\text{Vec.Length}-1

This overload reverses calling vector elements in-place.

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

Overload 2: TOpenCLMtxVec *Reverse(int Index, int Len);

Reverses the calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1Indexint
2Lenint
Remarks:

An exception is raised if array borders are overrun.

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

Overload 3: TOpenCLVector *Reverse(TOpenCLMtxVec *Vec);

Reverse all Vec elements.

#NameTypeDescription
1VecTOpenCLMtxVec *
Remarks:

Store the result in the calling vector elements. The TOpenCLBase::Length and TOpenCLBase::Complex roperties of the calling vector are set implicitly to match Vec vector.

V[k]=Vec[Nk],0kN,where N=Vec.Length1\text{V}[k]=\text{Vec}[N-k],\quad 0\leq k \leq N, \quad \text{where } N=\text{Vec.Length}-1

This overload reverses all vector elements.

See Also: TOpenCLVector::Rotate, TOpenCLVector::Shift
Declared in Dew::Math::TOpenCLVector · Dew.Math/clMtxVec.h · Cross-compiler

Overload 4: TOpenCLVector *Reverse();

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