コード例 #1
0
ファイル: size.hpp プロジェクト: AngeloTorelli/CompuCell3D
 void resize(mtl::compressed2D<ScalarType> & matrix,
             size_t rows,
             size_t cols)
 {
   matrix.change_dim(rows, cols);
 }
コード例 #2
0
ファイル: mtl4_resize.hpp プロジェクト: 12307/EasyDarwin
 static void resize( mtl::compressed2D< Value , MatrixParameters > &m , 
                     const mtl::dense_vector< Value , VectorParameters > &v )
 {
     m.change_dim( mtl::size( v ) , mtl::size( v ) );
 }