|
| MatViewOffDiag (const Mat< T, N, N, matType< type_parent >()> &m) |
| Construct a new MatViewOffDiag object from raw data pointer.
|
|
| MatViewOffDiag (const MatViewOffDiag &m) |
| Copy constructor.
|
|
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, N, MatType::NORMAL > () const |
| Conversion from view to a real Mat.
|
|
Mat< T, N, N, MatType::NORMAL > | asMat () const |
| Explicitly make a Mat copy.
|
|
template<typename T, size_t N, size_t N_,
MatType type, typename type_parent>
class flames::MatViewOffDiag< T, N, N_, type, type_parent >
Read only view version of a off diagonal.
- Template Parameters
-
T | Element type. |
N | Matrix dimension. |
N_ | Matrix dimension (unused, only to ensure it is a square matrix). |
type | Matrix type (surely NORMAL here). |
type_parent | Parent matrix (where it takes the off diagonal) type. |