Saving of MATLAB Image File not consistent

4 次查看(过去 30 天)
I have written a code to generate several plots from an array of data. Whenever I am trying to save those image files by savefig (for .fig Matlab files) or by saveas as jpeg or eps format, the saving of the image files is inconsistent. For a group of plots, savefig('FileName.fig') and saveas(gcf,'FileNameeps','eps') are working, i.e., images are saved in the current folder. However, sometimes the newly generated plots are not overwriting the previously generated plots (for some other runs) in the folder.
I have tried including the following before each plot:
delete FileName FileNameeps
But the problem persists. Only when I manually delete all the previous image files from the previous runs for the current folder, newer plots are saved. What can be a fix? Such problem did not occur when I had to generate fewer plots (as in codes generating one dozen plots in stead of some 4 dozen plots)
Thanks in advance.
  1 个评论
Amritesh Maitra
Amritesh Maitra 2024-5-30
I sort of managed the situation following Ninad's advice. But I would like to knoe the cause of the issue, as it had not cropped up before. Has anybody else faced such issues?

请先登录,再进行评论。

采纳的回答

Ninad
Ninad 2024-5-28
Hi Amritesh,
I recommend running a check to delete the image file if it already exists in the current working directory before saving the new plot using the same name. This approach helps in avoiding any potential issues with file overwriting.
To assist you with this, I've attached a dummy script named "deleteFig.m" that performs this task.
I hope you find this helpful.
Regards,
Ninad
  1 个评论
Amritesh Maitra
Amritesh Maitra 2024-5-30
Thanks Ninad for your response. Following your cue, I went through the MATLAB help section and feel isfile is a more suitable function, at least that is what MATLAB recommends. I entered all the files as a string and perform a loop search and delete operation to take care of my problem, as you had suggested in the dummy file.
Thanks.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by