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

template<class C>
CxMatrixTem< C >::CxMatrixTem ( int  nRow,
int  nCol 
) [inline]

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

Definition at line 31 of file Matrix.h.

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

00032         {
00033                 _nr = nRow;
00034                 _nc = nCol;
00035                 _data = new C[_nr * _nc];
00036         }


Generated on Thu Jan 13 09:13:06 2011 for ImpalaSrc by  doxygen 1.5.1