TRUECALC
Functions

MINVERSE

Returns the matrix inverse

Try it

When to use it

When should I use MINVERSE?

Use MINVERSE to compute the inverse of a square matrix, needed for solving systems of linear equations or performing matrix division.

Used in

science

Syntax

MINVERSE(array)

Examples

=MINVERSE({1,2;3,4}) // => -1.9999999999999998
=MINVERSE({1,0;0,1}) // => 1
=MINVERSE({2,0;0,4}) // => 0.5

On this page