up
previous
next
Minors
Syntax
Minors(N:INT,M:MAT):LIST
Summary
list of minor determinants of a matrix
Description
This function returns the list of all determinants of N x N
submatrices of M.
example
M := Mat([[1,2,3],[-1,2,4]]);
Minors(2,M);
[4, 7, 2]
-------------------------------
See Also