Returns the matrix determinant of an array.
Hàm này hoạt động trong Google Sheets giống như trong Excel — cùng cú pháp và đối số.
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})Kết quả: -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.