transpose - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

Matlab

  

transpose

  

compute the transpose of a MapleMatrix or MatlabMatrix using MATLAB(R)

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

transpose(X)

Parameters

X

-

MapleMatrix or MatlabMatrix

Description

• 

The transpose command computes the transpose of a matrix using MATLAB®.

• 

Executing the transpose command returns a Matrix, Vector or constant.

Examples

Define the Maple matrix

withMatlab:

maplematrix_aMatrix1,3,5,6,4,2,7,8,1,3,7,3

maplematrix_a135642781373

(1)

The transpose of this MapleMatrix is computed as

Matlabtransposemaplematrix_a

[1.    6.    7.    3.]

[                    ]

[3.    4.    8.    7.]

[                    ]

[5.    2.    1.    3.]

The matrix is set in MATLAB® and transposed as a MatlabMatrix.

Matlabsetvarmatlabmatrix_a,maplematrix_a

Matlabtransposematlabmatrix_a

[1.    6.    7.    3.]

[                    ]

[3.    4.    8.    7.]

[                    ]

[5.    2.    1.    3.]

See Also

LinearAlgebra[Transpose]

Matlab

Matlab[det]

Matlab[evalM]

Matlab[inv]

MatlabMatrix

 


Download Help Document