How to edit property of figure saved in .fig file without displaying it
I want to edit a certain property of MATLAB figures saved as .fig (MATLAB's default format) files. I create a lot of graphics-intensive figures in a script, so I choose not to display them by making the default figure invisible with set(0,'DefaultFigureVisible','off') . This sets the 'Visible' property of any new figure to 'off' . This way I can create, edit, save, etc., figures without the need to draw them, which can be taxing on CPU, GPU and their memories. I save the figures as .fig files using the saveas(handle,'filename.fig') command. This also saves the 'Visible' property, which is a