Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Save PC resources/increase calculating by avoiding showing plots?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I'm working with multiple data analysis. After every dataset I get four plots what will be displayed.
Its takes 2-3 seconds, each plot.
figure('Name','Measured Data','NumberTitle','on'); hold on myspec(x,Fs); title("Result: " + file_name,'Interpreter','none') hold on p1 = plot(t_ref,m1,'-o','LineWidth',1.5,'Color','r');
.......
hold on pN = plot(t_ref,mN,'-o','LineWidth',1.5,'Color','r');
saveas(gcf, [name, '.png'])
movefile([name, '.png'],FilePath)
Do I save a time/PC resources, when I just create and save this plots (without displaying) and if yes how can I do it?
I do already close all after all, but its just close already opened figures.
Thank you!
Réponses (0)
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!