inverse(A) takes a $2 \times 2$, $3 \times 3$, or $4 \times 4$ matrix $A$, and returns its inverse $A^{-1}$. If the matrix is not invertible, the result may be numerically invalid (with INF or NaN entries).
inverse(A)
INF
NaN
a 2x2, 3x3, or 4x4 matrix
Inverse of A
inverse(A)
takes a $2 \times 2$, $3 \times 3$, or $4 \times 4$ matrix $A$, and returns its inverse $A^{-1}$. If the matrix is not invertible, the result may be numerically invalid (withINF
orNaN
entries).