필터 지우기
필터 지우기

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

조회 수: 3 (최근 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