# File lib/backports/1.9.2/stdlib/matrix.rb, line 913
  def inverse
    Matrix.Raise ErrDimensionMismatch unless square?
    self.class.I(row_size).send(:inverse_from, self)
  end