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