GUI
1 次查看(过去 30 天)
显示 更早的评论
Is it possible to draw a figure in existing GUI window?tell me the way to approch
0 个评论
采纳的回答
Jan
2012-2-23
A GUI is a figure. A figure cannot be a child of a figure. Therefore it is not clear, what you want to achieve. Please explain, what "draw a figure" exactly means.
Perhaps you want a uipanel?
更多回答(2 个)
nanren888
2012-2-23
What created the GUI? If you created it, then you have the figure number (handle). Seems even if it is a GUIDE one, it shows up in get(0,'children');
Tannistha
2012-2-23
| by drawing a figure i am assuming u mean to plot something in the window? In order to plot anything in the gui figure window, u need to define the axis beforehand and get the handle of the axis. Then you can plot whatever u want in the axis. even if u want to draw some image using imdraw. u need to define the axis on which u want to draw.
Rest, agree with Jan. A figure cannot be a child of figure.
2 个评论
Walter Roberson
2012-3-1
If you are displaying pre-defined images then you want image() rather than imdraw().
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!