예제 #1
0
파일: mat-arith.hpp 프로젝트: BertiniM2/M2
 SubMatrix(MatType& m)
     : matrix(m),
       begin_row(0),
       end_row(m.numRows()),
       begin_column(0),
       end_column(m.numColumns())
 {
 }