Matrix::FlipHor Method

Overload List

#SignatureDescription
1TMtx *FlipHor() const;Flips the matrix elements horizontally.
2TMtx *FlipHor(TMtx *SrcMtx) const;Flip all SrcMtx matrix elements horizontally and store the results in the calling matrix.

Overload 1: TMtx *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: Matrix::FlipVer
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

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

Flip all SrcMtx matrix elements horizontally and store the results in the calling matrix.

#NameTypeDescription
1SrcMtxTMtx *
Remarks:

The flip operation is performed on all SrcMtx matrix rows. The Matrix::Rows, Matrix::Cols and Matrix::Complex properties of callign matrix are adjusted automatically.

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