Returns the matrix determinant of an array.
Deze functie werkt in Google Spreadsheets hetzelfde als in Excel — dezelfde syntaxis en argumenten.
MDETERM(array)The MDETERM function calculates the determinant of a matrix provided as an array. The array must be a square matrix with an equal number of rows and columns, otherwise, it returns the #VALUE! error.
=MDETERM({1,2;3,4})Resultaat: -2
Calculates the determinant of a 2x2 matrix: (1*4) - (2*3) = -2.
This error occurs if the array is not square or contains non-numeric cells.