= private = protected
row_vectors()
Returns an array of the row vectors of the matrix. See Vector.
# File lib/matrix.rb, line 976 def row_vectors Array.new(row_size) {|i| row(i) } end