Function: invert (M)

    • Returns the inverse of the matrix M.
    • The inverse is computed by the adjoint method.

    Example:
      (%i) invert( matrix( [a,b], [c,d] ) );
      (%o) matrix( [d,-b], [-c,a] )

    See Also:

    EXAMPLE: