= private = protected
[](*rows)
Creates a matrix where each argument is a row.
Matrix[ [25, 93], [-1, 66] ] => 25 93 -1 66
# File lib/matrix.rb, line 122 def Matrix.[](*rows) new(:init_rows, rows, false) end