|
| | MatViewT (const Mat< T, n_cols, n_rows, tType(type)> &m) |
| | Construct a new MatViewT object from raw data pointer.
|
| |
| | MatViewT (Mat< T, n_cols, n_rows, tType(type)> &m) |
| |
| | MatViewT (const MatViewT &m) |
| | Copy constructor.
|
| |
| | MatViewT (T *ptr) |
| |
| T | operator() (size_t r, size_t c) const |
| | Get the read only data element from row and column index.
|
| |
| T | operator[] (size_t index) const |
| | Get the read only element by array row major index.
|
| |
| | operator Mat< T, n_rows, n_cols, type > () const |
| | Conversion from view to a real Mat.
|
| |
| Mat< T, n_rows, n_cols, type > | asMat () const |
| | Explicitly make a Mat copy.
|
| |
template<typename T, size_t n_rows, size_t n_cols,
MatType type>
class flames::MatViewT< T, n_rows, n_cols, type >
Read only view version of a transposed matrix.
- Template Parameters
-
| T | Element type. |
| n_rows | Number of rows. |
| n_cols | Number of columns. |
| type | Matrix type. |