XLL+ Class Library (7.0)

matrix<T>::get_col_ptrs

Populates a vector of column pointers

void get_col_ptrs(
   std::vector<T*>& vecPtrs
);

Parameters

vecPtrs

Array of pointers, which will be filled with pointers to each column in the matrix.

Remarks

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.

Requirements

Header: matrix.h

See Also

matrix<T> Class | matrix<T> Methods