How to save result images?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sajina Rose
le 1 Oct 2019
Réponse apportée : Walter Roberson
le 1 Oct 2019
I need to write the output figures in seperate folder........can anyone please help me...?
0 commentaires
Réponse acceptée
Walter Roberson
le 1 Oct 2019
output_folder = 'C:\Users\Sajina\Documents\MATLAB\Project9\outputs';
outfile = fullfile(output_folder, 'fig1.png');
saveas(gcf, outfile);
the file will be written into the named directory.
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!