Matlab
det
compute the determinant of a MapleMatrix or MatlabMatrix in MATLAB(R)
Calling Sequence
Parameters
Description
Examples
det(X)
X
-
MapleMatrix, or MatlabMatrix
The Matlab[det] command computes the determinant of a matrix using MATLAB®.
Since constants are considered one-by-one matrices, the determinant of a constant returns the constant.
Executing the Matlab[det] command returns a float.
Define the Maple matrix
with⁡Matlab:
maplematrix_a≔Matrix⁡1,3,5,6,4,2,7,8,1:
The determinant of this MapleMatrix is computed as
Matlabdet⁡maplematrix_a
112.
A matrix is set in MATLAB®, manipulated, and the new matrix's determinant is computed
Matlabsetvar⁡matlabmatrix_a,maplematrix_a
MatlabevalM⁡matlabmatrix_b = matlabmatrix_a ^ 2
Matlabdet⁡matlabmatrix_b
12544.
See Also
LinearAlgebra[Determinant]
Matlab[evalM]
Matlab[getvar]
Matlab[setvar]
MatlabMatrix
Download Help Document