invΒΆ
inv calculates the inverse of a square matrix.
- mInverse = inv(m)
Return Value
mInverse is the inverse of m
Parameters
- m
m is a real or complex matrix with nr(m) == nc(m).
Comment
An exception will be raised if the matrix is singular.
See also
id-573011