How to show an updating image generated by "drawnow" in GUI axes1

3 次查看(过去 30 天)
Hi All, I would like to show an updating image generated by "drawnow" in GUI axes1. This is my code:
function Start_Callback(hObject, eventdata, handles)
set(handles.Start,'string','Running','enable','off');
QuasiBrownianMotion_Co_TimeControl_forGUI;
axes(handles.axes1);
drawnow;
% Update handles structure
guidata(hObject, handles);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
"QuasiBrownianMotion_Co_TimeControl_forGUI" is a function I used to generate images.
The problem right now is whenever I run GUI and hit start button. Matlab always pop out another new image window to show the images instead of showing within axes1. Could anyone help me out? Thanks a lot! Wenlong
  7 个评论
Geoff Hayes
Geoff Hayes 2014-5-29
编辑:Geoff Hayes 2014-5-29
Hi Wenlong - You can attach your *.m and *.fig files to any comment you add to your question. Just use the paperclip button to do so.
Wenlong
Wenlong 2014-5-30
Sorry! I am a rookie. I will attach the files tomorrow morning since they are in my office computer. Thanks again!

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2014-5-29
Search your code for "figure" - perhaps you're calling figure which is causing a brand new figure to be created instead of causing the image to appear in an axes control on your existing GUI figure.
  2 个评论
Wenlong
Wenlong 2014-5-29
Hi Thanks for your answer! The problem is that I am not be able to find a "figure" variable in the code. If there is a "figure" variable, I know we can handle it by using "imshow". If you can provide me an email box, I can send you my .m files. Thanks! Wenlong
Image Analyst
Image Analyst 2014-5-30
I don't have an email address. You can attach m-files and fig files here with the paper clip icon. Or you can step through your code a line at a time to find out where the "pop out another new image window" happens exactly.

请先登录,再进行评论。

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by