Returns a pointer to a contiguous column
[C++]
T* col_ptr(
size_t col
);
const T* col_ptr(
size_t col
) const;
Column coordinate.
Column coordinate.
A pointer to the column is returned.
Since columns are stored together, this function is cheap and feasible.
Conversely, there is no row_ptr() method.
Header: matrix.h