Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

template<class C>
Impala::Core::Matrix::MatrixTem< C >::MatrixTem ( int  nRow,
int  nCol 
) [inline]

Empty matrix of type C, with given number of rows and columns.

Definition at line 39 of file MatrixTem.h.

References Impala::Core::Matrix::MatrixTem< C >::_data, Impala::Core::Matrix::MatrixTem< C >::_nc, Impala::Core::Matrix::MatrixTem< C >::_nr, and Impala::Core::Array::C.

00040         {
00041                 _nr = nRow;
00042                 _nc = nCol;
00043                 _data = new C[_nr * _nc];
00044         }


Generated on Fri Mar 19 11:16:33 2010 for ImpalaSrc by  doxygen 1.5.1