07-26-2006 04:45 AM
07-26-2006 09:49 AM
02-03-2013 06:44 AM
hi
double[] roundWaveform = new double[4194304];
NationalInstruments.ComplexDouble[] complexData = NationalInstruments.Analysis.Dsp.Transforms.RealFft(roundWaveform);
System.OutOfMemoryException:
|
Out of memory error sometimes, but my Windows7 system also has a lot of memory, 4G of memory
Out of memory error sometimes, but my Windows7 system also has a lot of memory, 4G of memory
Why?
|
||||
02-11-2013 02:59 AM
It has nothing to do with the amount of RAM you have. Windows can give some place from pagefile if it lacks RAM. But, you should read about .NET memory constrains per process and per object. For example it is worth to notice that in Windows 7 32 bit .NET process cannot allocate more then 2GB, and on any version of Windows .NET object cannot allocate more than 2GB.
Just use Google to read about those topics 🙂