= private = protected
column_vector(column)
Creates a single-column matrix where the values of that column are as given in column.
Matrix.column_vector([4,5,6]) => 4 5 6
# File lib/matrix.rb, line 181 def Matrix.column_vector(column) column = convert_to_array(column) new [column].transpose, 1 end