Construct a view of the transpose of a matrix. More...
#include <vector.h>
Public Member Functions | |
matrix_view_transpose (mat_t &m) | |
Create a row object from row row of matrix m . | |
double & | operator() (size_t i, size_t j) |
Return a reference to the ith column of the selected row. | |
const double & | operator() (size_t i, size_t j) const |
Return a const reference to the ith column of the selected row. | |
size_t | size1 () const |
Return the number of rows. | |
size_t | size2 () const |
Return the number of columns. | |
Protected Attributes | |
mat_t & | m_ |
A reference to the original matrix. | |
Documentation generated with Doxygen. Provided under the
GNU Free Documentation License (see License Information).