Documentation/Calc Functions/MINVERSE

    From The Document Foundation Wiki
    Other languages:


    Function name:

    MINVERSE

    Category:

    Array

    Summary:

    Determines the multiplicative inverse of a supplied invertible matrix. A matrix is only invertible if it is square (n x n) and has a non-zero determinant.

    Syntax:

    MINVERSE(Array)

    Returns:

    Returns an array of numbers that represent the inverse matrix. The returned array has same dimensions as the supplied array.

    Arguments:

    Array contains the square matrix of values to be inverted. This argument can take the form of an explicit cell range (such as A1:C3), the name of a named range, the name of a database range, or an inline constant array.

    • If Array is not a single area reference, then MINVERSE reports an invalid argument error (Err:502). The tilde (~) reference concatenation operator cannot be used to join multiple areas in this argument.
    • If Array does not have the same number of rows as columns, then MINVERSE reports an invalid argument error (Err:502).
    • If any cell within Array is empty or contains non-numeric data, then MINVERSE reports a #VALUE! error.
    • If Array is not invertible (MDETERM(Array) is equal to 0), then MINVERSE reports an invalid argument error (Err:502).

    Additional details:

    General information about Calc's array functions

    Note pin.svg

    Note:
    For convenience, the information in this subsection is repeated on all pages describing Calc's array functions.

    To avoid repetition within the subsequent text, only Windows/Linux key combinations are specified. The following table shows the mapping between these key combinations and their macOS equivalents.

    Mapping between relevant Windows/Linux and macOS key combinations
    Windows/Linux key combination macOS equivalent Comments
    Ctrl + ⇧ Shift + ↵ Enter ⌘ Cmd + ⇧ Shift + ↵ Enter Create an array formula.
    Ctrl + / ⌘ Cmd + / Select all cells in an array formula range. "/" is the division key on the numeric keypad.
    Ctrl + C ⌘ Cmd + C Copy.
    Ctrl + V ⌘ Cmd + V Paste.
    • An array is a rectangular range of cells containing data. For example, a square range of three rows by three columns is a 3 x 3 array. The smallest possible array is a 1 x 2 or 2 x 1 array, with two adjacent cells.
    • A formula in which the individual values in a cell range are evaluated is referred to as an array formula. The difference between an array formula and other formulas is that the array formula deals with several values simultaneously instead of just one.
    • If you create an array formula using the Function Wizard, you must mark the Array check box so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned.
    • If you enter the array formula directly into the cell, you must use the key combination Ctrl + ⇧ Shift + ↵ Enter instead of just the ↵ Enter key. Only then does the formula become an array formula.
    • An array formula is displayed inside curly brackets or braces ("{" and "}"). It is not possible to create an array formula by manually entering these braces.
    • Some array functions take parameters that are forced to evaluate as an array formula, even when the formula is entered normally. These are MDETERM, MINVERSE, MMULT, SUMPRODUCT, SUMX2MY2, SUMX2PY2, and SUMXMY2.
    • Calc supports constant inline arrays in formulas. An inline array is enclosed within curly brackets or braces ("{" and "}"). Individual elements can be numbers (including negatives), logical constants (TRUE, FALSE), or literal strings. Non-constant expressions are not allowed. Arrays can be entered with one or more rows, and one or more columns. All rows must comprise the same number of elements; similarly, all columns must comprise the same number of elements.
    • Editing array formulas. Select the cell range containing the array formula. To select the whole range, position the cursor inside the range and press Ctrl + /. Then press F2 or position the cursor in the Input line, edit the formula as required, and use the key combination Ctrl + ⇧ Shift + ↵ Enter.
    • Deleting array formulas. Select the cell range containing the array formula. To select the whole range, position the cursor inside the range and press Ctrl + /. Press Delete to delete the array contents, including the array formula. Alternatively, press ← Backspace to bring up the Delete Contents dialog box, select Formulas or Delete all, and click OK.
    • Copying array formulas. Select the cell range containing the array formula. To select the whole range, position the cursor inside the range and press Ctrl + /. Then press F2 or position the cursor in the Input line. Copy the formula by pressing Ctrl + C. Select a range of cells where you want to insert the array formula and either press F2 or position the cursor in the Input line. Paste the formula by pressing Ctrl + V in the selected space and confirm it using the key combination Ctrl + ⇧ Shift + ↵ Enter. The selected range now contains the array formula.
    • Adjusting an array range. Select the cell range containing the array formula. To select the whole range, position the cursor inside the range and press Ctrl + /. Below the selection, to the right, you will see a small icon with which you can zoom in or out on the range using your mouse. When you adjust the array range, the array formula will not be adjusted automatically - you are only changing the range in which the results will appear.

    Examples:

    Formula Description Returns
    {=MINVERSE(A1:B2)} entered as an array formula after selecting cell A4. Cells A1, A2, B1, and B2 contain the values 4, 3, 2, and 2 respectively. Here the function populates cells A4, A5, B4, and B5 with the values 1, -1.5, -1, and 2 respectively. Note that the array formula {=MMULT(A1:B2; A4:B5)} would now return the 2 x 2 identity matrix [math]\displaystyle{ \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} }[/math]. See Description
    {=MINVERSE(matrix_values)} entered as an array formula after selecting cell D6. matrix_values is a named range covering a 2 x 2 cell area containing the values {1.5, 3.5; 2, -4}. Here the function populates cells D6, D7, E6, and E7 with the values 0.307692307692308, 0.153846153846154, 0.269230769230769, and -0.115384615384615 respectively. See Description
    {=MINVERSE({1,2; 2,1})} entered as an array formula after selecting cell A1. Here the function populates cells A1, A2, B1, and B2 with the values -0.333333333333333, 0.666666666666667, 0.666666666666667, and -0.333333333333333 respectively. See Description

    Related LibreOffice functions:

    MDETERM

    MMULT

    MUNIT

    TRANSPOSE

    ODF standard:

    Section 6.5.3, part 2

    Related (or similar) Excel functions:

    MINVERSE