Why doesn't "hold on" work when I have a figure that has opened with the title bar Figures - Figure 1?

11 views (last 30 days)
Hi,
Normally, I can make a plot and save it as a .fig file. Then, when I open it later, it will open and show just "Figure 1" in the title bar. Then I can use the command "hold on" to plot other things on that same graph.
On a few of my recent graphs, I had to open the Figure Properties to change some line sizes and I saved those figures in the same way. Now, when I open those figures, the title bar says "Figures - Figure 1" and when I use hold on, it makes a new graph.
It seems like I must have somehow opened these differently somehow, but I have no idea why hold on wouldn't work in the same way, or what I did. Can anyone offer an idea of how to get my figures to open up as JUST the single figure so that I can use hold again?
Thank you!

Accepted Answer

Walter Roberson
Walter Roberson on 24 Apr 2014
"hold on" applies to the current axis. Possibly the axis that is current at the time you do the "hold on" is not the one you expect. You can hold a specific axis if you use the function form. For example,
hold( find(gcf, 'tag', 'MyGui_axes1'), 'on')
  6 Comments
K
K on 24 Apr 2014
Also, if I use hold( findobj(gcf, 'tag', 'MyGui_axes1'), 'on') , I get the following error:
Error using ==> hold Unknown command option.
So like I said, I can use the get(gcf) workaround, but its a bit of a pain, so if you have a better idea, maybe let me know? Thanks!
K
K on 24 Apr 2014
Ooh, but I can put the get(gcf) in the m file and that seems to work, so that's an ok solution for the time-being. Strange that it won't just find the single open figure without that. Thanks again for all of your help! You guys are the best about helping with this kind of stuff.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!