Set current figure without making it visible
70 次查看(过去 30 天)
显示 更早的评论
Hi all,
I'd like to make a figure "the current figure" by using
figure(myPicture)
HOWEVER, I don't want myPicture to become visible.
The figure(myPicture) command makes myPicture visible by definition. Is there any other command that will simply make myPicture the current figure while keeping the visibility set to "off"?
Thanks!
JF
2 个评论
Thomas
2012-7-11
You have created another question about the same topic without replying back to the posters who posted answers in the previous thread.
Please donot make duplicate postings.
Duplicate posting at:
采纳的回答
更多回答(2 个)
John Petersen
2012-7-11
Do you want to manipulate the figure 'MyPicture'? Is that why you want it 'current'? If so, you don't have to make it current. You just have to use the figure handle in the commands you're using. For example,
h=figure;
creates the figure and handle for that figure;
plot(h, x,y)
plots x,y on the figure with handle 'h'
title(h,'This is MyPicture')
adds a title to your figure.
0 个评论
Kye Taylor
2012-7-11
Perhaps
figure(myPicture), set(myPicture,'visible','off')
then when you want
set(myPicture,'visible','on')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!