= private = protected
row_vectors()
Returns an array of the row vectors of the matrix. See Vector.
# File lib/matrix.rb, line 903 def row_vectors rows = (0 .. row_size - 1).collect {|i| row(i) } rows end