Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a situation where I create a waitbar, read a large image and plot the image to the gui axes. However what happens is that the plot is created inside the waitbar instead.

hWait = waitbar(0,'1','Name','Reading calibration file ...');
% why do I need the '1' in waitbar ???

readCalibrationImage( handles );

% delete( hWait ); 
set(handles.figure1,'CurrentAxes',handles.axesROI)
plotROIImage( handles, imagedata, roi, lineV, lineH, doExportPlot )            

only if I delete the handle the plot is created in the correct window.

How do I enfore plotting to the correct window?

share|improve this question

1 Answer

up vote 3 down vote accepted

Try putting a

set(0, 'CurrentFigure', handles.figure1);

in front of the CurrentAxes statement. AFAIK, set(...,'CurrentAxes') does not automatically switch the active figure...

share|improve this answer
What is 0 in this code? – Matthias Pospiech Jan 10 at 9:38
I'm not sure what it's really called (and I don't have the time now to google for it, sorry...), but 0 in this context represents a handle to the system, environment variables, etc. Try doing set(0) and you'll see a list of available environment options. – Rody Oldenhuis Jan 10 at 9:47
+1, and congrats on the 10K! – Eitan T Jan 10 at 12:23
@EitanT: tx, you're not too far off yourself :) – Rody Oldenhuis Jan 10 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.