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