TMtx::FlipHor Method

Overload List

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

Overload 1: TMtx *FlipHor();

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: TMtx::FlipVer
Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler

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

Flip all SrcMtx matrix elements horizontally.

#NameTypeDescription
1SrcMtxTMtx *
Remarks:

Store the results in the calling matrix. The flip operation is performed on all SrcMtx matrix rows. The TMtx::Rows, TMtx::Cols and TMtx::Complex properties of callign matrix are adjusted automatically.

Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler