Home || Architecture || Video Search || Visual Search || Scripts || Applications || 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 Fri Mar 19 10:32:09 2010 for ImpalaSrc by  doxygen 1.5.1