(require 'determinant)
A Matrix can be either a list of lists (rows) or an array.
Unlike linear-algebra texts, this package uses 0-based coordinates.
matrix must be a square matrix.
determinantreturns the determinant of matrix.(require 'determinant) (determinant '((1 2) (3 4))) ⇒ -2 (determinant '((1 2 3) (4 5 6) (7 8 9))) ⇒ 0
Returns a copy of matrix flipped over the diagonal containing the 1,1 element.