You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > MatrixInt Structure > MatrixInt Methods > Transp Method > MatrixInt.Transp Method ()
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
MatrixInt.Transp Method ()

Transposes matrix.

Syntax
C#
Visual Basic
public TMtxInt Transp();

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 Rotate90 method.

var A: TMtxInt; begin CreateIt(A); A.Size(2,1,True); // 2x1 complex matrix A.SetVal(Cplx(3,4)); A.Transp; FreeIt(A); end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!