= 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 139 def Matrix.[](*rows) rows(rows, false) end