Add a single column to the matrix and populate it
[C++]
void add_col(
const T* pt
);
Pointer to an array of type T, with at least rows() members.
This function adds one new column to the matrix, and fills it with the values provided.
Header: matrix.h