MATLAB: Does the title of the figure disappear after I save and reopen the figure within MATLAB 7.0 (R14)

axisdisappearhgsavelabel;MATLABoffsavesaveastitleviewvisible

The following steps reproduce this behavior:
figure
title('some title')
text(.01,.5,'test text');
axis off
saveas(gcf,'broken.fig');
open('broken.fig')
After I reopen the figure, the title disappears.

Best Answer

This bug has been fixed in Release 14 Service Pack 3 (R14SP3). For previous product releases, read below for any possible workarounds:
This is a bug in the AXIS function within MATLAB 7.0 (R14). The "axis off" command should remove the title from the original figure.
To work around this issue, issue the following commands after opening the saved figure:
set(get(gca, 'Title'), 'Visible', 'on')