minvThis function calculates the inversion of the matrix: M-1.
Indirect parameter passing is disabled
1
| No. | Type | Description |
|---|---|---|
| 1 input |
matrix of numerals | Matrix to invert |
| Type | Description |
|---|---|
| matrix of numerals | Result Inverted matrix |
Division: Matrix is not a square (number of rows and columns differ)
print matrix( "0.0", 4, " | ", minv ( {{1,2},{3,4}} ) ); // returns {{-2,1},{1.5,-0.5}} | -2.0 1.0 |
| 1.5 -0.5 |