Error occur after saveas image .emf around 10200 images.
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi. I have some problem about my script. It is script for generate image .emf afer I generate figure then saveas with .emf around 10200 images program will show some internal error and cann't do anything so please help me clearly ths issue.
Note: every 255 images was save I have clear all and pack already but this issue still occur.
Thanks.
1 Kommentar
Antworten (1)
nick
am 1 Apr. 2025
Hi Auno,
Kindly share the error message to help debug the issue. According to the query, it seems that the system becomes unresponsive due to the error.
To address the issue with generating a large number of EMF files in MATLAB R2011, you can reduce the iterations after which the clean up process is executed reducing memory usage.
You can also set figure visibility to 'off' if you don't need to view the plots during generation, as shown below:
figureHandle = figure;
set(figureHandle, 'Visible', 'off');
Hope this helps.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!