The methods of the matrix<T> class are listed here.
clear | Empty the matrix |
resize | Resize the matrix, optionally preserving existing values |
transpose | Transpose the matrix along its major diagonal |
add_row | Add a single row to the matrix and populate it |
add_col | Add a single column to the matrix and populate it |
at | Returns a reference to an item in the matrix |
row | Returns a copy of a complete row |
col | Returns a copy of a complete column |
find_in_row | Searches one row for a value |
find_in_col | Searches one column for a value |
col_ptr | Returns a pointer to a contiguous column |
get_col_ptrs | Populates a vector of column pointers |
Header: matrix.h