Matrix::FlipVer Method

Overload List

#SignatureDescription
1TMtx *FlipVer() const;Flips the matrix elements vertically
2TMtx *FlipVer(TMtx *SrcMtx) const;Flip all SrcMtx matrix elements vertically and store the results in the calling matrix. The flip operation is performed on all SrcMtx matrix columns.

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

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

Flip all SrcMtx matrix elements vertically and store the results in the calling matrix. The flip operation is performed on all SrcMtx matrix columns.

#NameTypeDescription
1SrcMtxTMtx *
Remarks:

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