= private = protected
inverse()
Returns the inverse of the matrix.
Matrix[[-1, -1], [0, -1]].inverse => -1 1 0 -1
# File lib/matrix.rb, line 1060 def inverse Matrix.Raise ErrDimensionMismatch unless square? self.class.I(row_count).send(:inverse_from, self) end