Clear Filters
Clear Filters

Saving of MATLAB Image File not consistent

4 views (last 30 days)
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 Comment
Amritesh Maitra
Amritesh Maitra on 30 May 2024
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?

Sign in to comment.

Accepted Answer

Ninad
Ninad on 28 May 2024
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 Comment
Amritesh Maitra
Amritesh Maitra on 30 May 2024
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.

Sign in to comment.

More Answers (0)

Categories

Find more on Printing and Saving 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!