Dapatkan determinan matriks dari array yang diberikan
=MDETERM(array)
| Parameter | Deskripsi |
|---|---|
array |
A square array of numbers only. |
To get the matrix determinant for the 2 x 2 array shown in B7:C8, the formula in E7 is:
=MDETERM(B7:C8) // returns -1
The equivalent formula with an array constant is:
=MDETERM({4,3;3,2}) // returns -1
To get the matrix determinant for the 3 x 3 array shown in I7:K9, the formula in M7 is:
=MDETERM(I7:K9) // returns 1
The equivalent formula with an array constant is:
=MDETERM({1,0,5;2,1,6;3,4,0}) // returns 1