Subj : Re: Matrix Operation To : borland.public.cpp.borlandcpp From : Mohsen Date : Fri Apr 22 2005 12:59 pm > >Whether it is possible depends on how the matrix elements are stored. How can I store a two dimension matrix efficiently? Is there a better alternate for the following? double** data; data = new double* [rows]; for (unsigned i = 0; i < rows; i++) data[i] = new double[columns]; > >Whether it speeds things up has to be measured. .