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