Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt *FlipHor(); | Flips the matrix elements horizontally. |
| 2 | TMtxInt *FlipHor(TMtxInt *SrcMtx); | Flip all SrcMtx matrix elements horizontally. |
Overload 1: TMtxInt *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: TMtxByte::FlipVer
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler
Overload 2: TMtxInt *FlipHor(TMtxInt *SrcMtx);
Flip all SrcMtx matrix elements horizontally.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | SrcMtx | TMtxInt * |
Remarks:
Store the results in the calling matrix. The flip operation is performed on all SrcMtx matrix Rows. The TMtxByte::Rows, TMtxByte::Cols and TMtxByte::IntPrecision properties of callign matrix are adjusted automatically.
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler