method
new_matrix
ruby latest stable - Class:
Matrix
new_matrix(rows, column_count = rows[0].size)private
No documentation available.
# File lib/matrix.rb, line 291
def new_matrix(rows, column_count = rows[0].size) # :nodoc:
self.class.send(:new, rows, column_count) # bypass privacy of Matrix.new
end