Flowdock
method

new_matrix

Importance_0
new_matrix(rows, column_count = rows[0].size) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/matrix.rb, line 364
  def new_matrix(rows, column_count = rows[0].size) # :nodoc:
    self.class.send(:new, rows, column_count) # bypass privacy of Matrix.new
  end
Register or log in to add new notes.