TMtxSmallInt::Transp Method

Overload List

#SignatureDescription
1TMtxInt *Transp();Transposes matrix.
2TMtxInt *Transp(TMtxInt *Mtx);Transpose the Mtx matrix.

Overload 1: TMtxInt *Transp();

Transposes matrix.

Remarks:

Transposes calling matrix in-place. Instead of using transpose directly, try using the TMtxOperation parameter of many TMtxInt methods. If this operation can not be avoided try using the not-in-place version (see bellow) or see the TMtxSmallInt::Rotate90 method.

See Also: TMtxSmallInt::Rotate90
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler

Overload 2: TMtxInt *Transp(TMtxInt *Mtx);

Transpose the Mtx matrix.

#NameTypeDescription
1MtxTMtxInt *
Remarks:

Write the results to the calling matrix. The TMtxSmallInt::Rows, TMtxSmallInt::Cols and TMtxSmallInt::IntPrecision properties of the calling matrix are adjusted automatically.

Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler