MatrixInt::FlipVer Method

Overload List

#SignatureDescription
1TMtxInt *FlipVer() const;Flips the matrix elements vertically
2TMtxInt *FlipVer(TMtxInt *SrcMtx) const;Flip all SrcMtx matrix elements vertically.

Overload 1: TMtxInt *FlipVer() const;

Flips the matrix elements vertically

Remarks:

Flip calling matrix elements vertically - element [j, col] = element [Rows-j, col]. This operation is performed on all calling matrix columns.

See Also: MatrixInt::FlipHor
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: TMtxInt *FlipVer(TMtxInt *SrcMtx) const;

Flip all SrcMtx matrix elements vertically.

#NameTypeDescription
1SrcMtxTMtxInt *
Remarks:

Store the results in the calling matrix. The flip operation is performed on all SrcMtx matrix columns. The MatrixInt::Rows, MatrixInt::Cols and TMtxVecInt::IntPrecision properties of callign matrix are adjusted automatically.

Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler