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

6 次查看(过去 30 天)
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!

采纳的回答

Walter Roberson
Walter Roberson 2014-4-24
"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 个评论
K
K 2014-4-24
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 2014-4-24
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by