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