Clear Filters
Clear Filters

Matlab and Windows Crash after plotting data, how to avoid this?

1 view (last 30 days)
I've got troubles plotting large amount of data in Matlab. Approx 5-6 matrices with 10e6 rows each. Ram and CPU doesn't seem to be a problem: Ram:16 Gb, CPU: i7-3930K; because maximal Ram-usage was up to 5-6 Gb. Maybe there is a problem with video card (NVIDIA Quadro 4000)? Matlab crash and immidiate Windows shut down happens directly after attempt to plot the data.
Thanks for every responds

Answers (1)

Sachin Ganjare
Sachin Ganjare on 26 Oct 2012
Probably you are trying to plot data points individually rather than as a matrix.
Refer below link for details:
  2 Comments
E. Groh
E. Groh on 26 Oct 2012
thanks for response, actually I use a simply plot command like this: subplot(411);plot(comb.data_fsi.time/60,comb.data_fsi.sig(:,1)); subplot(412);plot(comb.data_fsi.time/60,comb.data_fsi.sig(:,2)); subplot(413);plot(comb.data_fsi.time/60,comb.data_fsi.sig(:,3)); subplot(414);plot(comb.data_fsi.time/60,comb.data_fsi.sig(:,4)); I also don't use CUDA command or any loops for plotting the data
Arthur
Arthur on 26 Oct 2012
Do you really need to plot all 10e6 datapoints? Plotting so much data will give you problems... And you probably won't see all the details of such dataset if plotted at once.
Could you downsample the data before plotting?

Sign in to comment.

Categories

Find more on Graphics Performance in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!