[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 }