= private = protected
column_vectors()
Returns an array of the column vectors of the matrix. See Vector.
# File lib/matrix.rb, line 1416 def column_vectors Array.new(column_count) {|i| column(i) } end