up previous next
minors

list of minor determinants of a matrix

Syntax
minors(M: MAT, N: INT): LIST

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(M, 2);
[4, 7, 2]

See Also