XLL+ Class Library (6.3)

matrix<T>::col_ptr

Returns a pointer to the data in a column

T* col_ptr(
   size_t col
);
const T* col_ptr(
   size_t col
) const;

Parameters

col

Column coordinate.

col

Column coordinate.

Return Value

A pointer to the column is returned.

Remarks

Since columns are stored together, this function is cheap and feasible. Conversely, there is no row_ptr() method.

Requirements

Header: matrix.h

See Also

matrix<T> Class | matrix<T> Methods