Flowdock
method

new_matrix

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Matrix
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 291
  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.