Populates a vector of column pointers
[C++]
void get_col_ptrs(
std::vector<T*>& vecPtrs
);
Array of pointers, which will be filled with pointers to each column in the matrix.
Data is stored within the matrix with columns together.
This function fills vecPtrs with pointers to each
column in the matrix.
Any data previously in vecPtrs is discarded.
Header: matrix.h