Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx *Transp() const; | Transposes matrix. |
| 2 | TMtx *Transp(TMtx *Mtx) const; | Transpose the Mtx matrix and write the results to the calling matrix. |
Overload 1: TMtx *Transp() const;
Transposes matrix.
Remarks:
Transposes calling matrix in-place. Instead of using transpose directly, try using the parameter of many TMtx methods. If this operation can not be avoided try using the not-in-place version (see bellow) or see the Matrix::Rotate90 method.
See Also: Matrix::Rotate90
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtx *Transp(TMtx *Mtx) const;
Transpose the Mtx matrix and write the results to the calling matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx * |
Remarks:
The Matrix::Rows, Matrix::Cols and Matrix::Complex properties of the calling matrix are adjusted automatically.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler