Matlab
transpose
compute the transpose of a MapleMatrix or MatlabMatrix using MATLAB(R)
Calling Sequence
Parameters
Description
Examples
transpose(X)
X
-
MapleMatrix or MatlabMatrix
The transpose command computes the transpose of a matrix using MATLAB®.
Executing the transpose command returns a Matrix, Vector or constant.
Define the Maple matrix
with⁡Matlab:
maplematrix_a≔Matrix⁡1,3,5,6,4,2,7,8,1,3,7,3
maplematrix_a≔135642781373
The transpose of this MapleMatrix is computed as
Matlabtranspose⁡maplematrix_a
[1. 6. 7. 3.]
[ ]
[3. 4. 8. 7.]
[5. 2. 1. 3.]
The matrix is set in MATLAB® and transposed as a MatlabMatrix.
Matlabsetvar⁡matlabmatrix_a,maplematrix_a
Matlabtranspose⁡matlabmatrix_a
See Also
LinearAlgebra[Transpose]
Matlab[det]
Matlab[evalM]
Matlab[inv]
MatlabMatrix
Download Help Document