pub fn vec_to_column_mat<T: NumAssign + Copy>(v: &Vec<T>) -> Mat<T>
Expand description

Converts a vector of numbers to a matrix of a column vector.

Essensialt we take each element in the input vector and put it into its own vector, before stringing them together.

             [[a]
[a, b, c] ->  [b]
              [c]]