suivant: Rank of a matrix
monter: Linear algebra
précédent: Determinant of a matrix
Table des matières
Index
Determinant of a sparse matrix : det_minor
det_minor takes as argument a matrix A.
det_minor returns the determinant of the matrix A computed by
expanding the determinant using Laplace algorithm.
Input :
det_minor([[1,2],[3,4]])
Output :
-2
Input :
det_minor(idn(3))
Output :
1
giac documentation written by Renée De Graeve and Bernard Parisse