Concept of matrix type used by the concept SvdTraits. 
  
 | 
|   | Matrix (size_t n1, size_t n2) | 
|   | initialize all the entries of the matrix to zero.  More...
  | 
|   | 
| size_t  | number_of_rows () | 
|   | 
| size_t  | number_of_columns () | 
|   | 
| FT  | operator() (size_t i, size_t j) | 
|   | return the entry at row \( i\) and column \( j\), \( i\) from \( 0\) to number_of_rows - 1, \( j\) from \( 0\) to number_of_columns - 1.  More...
  | 
|   | 
| void  | set (size_t i, size_t j, const FT value) | 
|   | set the entry at row \( i\) and column \( j\) to \( value\).  More...
  | 
|   | 
      
        
          | SvdTraits::Matrix::Matrix  | 
          ( | 
          size_t  | 
          n1,  | 
        
        
           | 
           | 
          size_t  | 
          n2  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
initialize all the entries of the matrix to zero. 
 
 
      
        
          | size_t SvdTraits::Matrix::number_of_columns  | 
          ( | 
           | ) | 
           | 
        
      
 
 
      
        
          | size_t SvdTraits::Matrix::number_of_rows  | 
          ( | 
           | ) | 
           | 
        
      
 
 
      
        
          | FT SvdTraits::Matrix::operator()  | 
          ( | 
          size_t  | 
          i,  | 
        
        
           | 
           | 
          size_t  | 
          j  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
return the entry at row \( i\) and column \( j\), \( i\) from \( 0\) to number_of_rows - 1, \( j\) from \( 0\) to number_of_columns - 1. 
 
 
      
        
          | void SvdTraits::Matrix::set  | 
          ( | 
          size_t  | 
          i,  | 
        
        
           | 
           | 
          size_t  | 
          j,  | 
        
        
           | 
           | 
          const FT  | 
          value  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
set the entry at row \( i\) and column \( j\) to \( value\).