MINVERSE function

MINVERSE(Matrix) MINVERSE(Matrix)

Matrix

{{ Number }}

The numbers of the matrix. This two-dimensional array must have a size that is equal to the sizes of its constituent arrays, with no blank values. In other words, it must be square.

Returns

{{ Number }}

The inverse matrix of the given matrix.

Returns the inverse matrix of the given matrix. Matrices are written differently in Calcapp compared to most spreadsheets. For instance, =MINVERSE({ 3, 5; 1, 2 }) (written =MINVERSE({ 3; 5\ 1; 2 }) with decimal commas) is written as MINVERSE({{ 3, 5 }, { 1, 2 }})MINVERSE({{ 3; 5 }; { 1; 2 }}) in Calcapp.

Example

MINVERSE({{ 3, 5 }, { 1, 2 }})MINVERSE({{ 3; 5 }; { 1; 2 }})

Returns the inverse of the given matrix, {{ 2, -5 }, { -1, 3 }}{{ 2; -5 }; { -1; 3 }}.