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

4 views (last 30 days)
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 Comments
Geoff Hayes
Geoff Hayes on 29 May 2014
Edited: Geoff Hayes on 29 May 2014
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 on 30 May 2014
Sorry! I am a rookie. I will attach the files tomorrow morning since they are in my office computer. Thanks again!

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 29 May 2014
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 Comments
Wenlong
Wenlong on 29 May 2014
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 on 30 May 2014
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.

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Performance in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!