How to select figure by name?
이전 댓글 표시
So I have a couple of figures open. Each has its uniqe name. I want to plot a line on one of them. How to select figure by his name?
Thanks.
채택된 답변
추가 답변 (1개)
John D'Errico
2020년 3월 12일
My approach would be to create the figure names when you create the corresponding figure.
fred = figure;
barney = figure;
Now you can go back to either figure when you need to do so. This just requires you to save those figure handles. In order to wake up fred, just do so by calling figure as needed.
figure(fred)
You might be more creative than was I in naming the figures, but you should get the idea.
카테고리
도움말 센터 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!