| 
|   | MatViewOpp (const Mat< T, n_cols, n_rows, type > &m) | 
|   | Construct a new MatViewOpp object from raw data pointer.  
  | 
|   | 
|   | MatViewOpp (const MatViewOpp &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_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::MatViewOpp< T, n_rows, n_cols, type >
Read only view version of the opposite of a matrix. 
- Template Parameters
 - 
  
    | T | Element type.  | 
    | n_rows | Number of rows.  | 
    | n_cols | Number of columns.  | 
    | type | Matrix type.  |