Invert Command
- Invert( <Matrix> )
-
Inverts the given matrix.
Invert({{1, 2}, {3, 4}})
yields (−211.5−0.5), the inverse matrix of
(1234).
|
Invert({{a, b}, {c, d}})
yields (dad−bc−bad−bc−cad−bcaad−bc), the inverse matrix of (abcd).
- Invert( <Function> )
-
Gives the inverse of the function.
Invert(sin(x))
yields asin(x).
|