Dapatkan matriks invers dari array
=MINVERSE(array)
| Parameter | Deskripsi |
|---|---|
array |
A square array of numbers only. |
In the example shown the formula used in E7 to calculate the inverse matrix of the 2 x 2 matrix in the range B7:C8 is:
=MINVERSE(B7:C8) // returns {-2,3;3,-4}
The formula in M7 calculates the inverse matrix of the 3 x 3 matrix in B7:C8:
=MINVERSE(I7:K9) // returns {-24,20,-5;18,-15,4;5,-4,1}