MatrixInt::FlipHor Method

Overload List

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

Overload 1: TMtxInt *FlipHor() const;

Flips the matrix elements horizontally.

Remarks:

Flip calling matrix elements horizontally - element [row, j] = element [row, Cols-j]. This operation is performed on all calling matrix Rows.

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

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

Flip all SrcMtx matrix elements horizontally.

#NameTypeDescription
1SrcMtxTMtxInt *
Remarks:

Store the results in the calling matrix. The flip operation is performed on all SrcMtx matrix Rows. 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