Is there a way to tell Matlab not to steal window focus (from an external editor) such as Emacs) upon graphical commands such as figure and plot. This would increase my productivity a lot because I often want to continue code development during data (re-)processing.

link|improve this question

73% accept rate
3  
VERY good question. It's so annoying. – Oli Dec 13 '11 at 13:06
feedback

1 Answer

up vote 7 down vote accepted

It is possible, the trick is to not use the figure statement, but to change the current figure directly. This will change the active plot without changing the focus. Typically I do something like this:

function change_current_figure(h)
set(0,'CurrentFigure',h)

Then, all of the figure(h) statements need to be changed to change_curent_figure(h).

Note, this is included in the matlab documentation.

It should be noted, this only works if the figure is already created. If new figures are going to be periodically created, one could create the figures as the very first few lines of code, save the handles, do the processing, and then plot to them. This example would work. Note, the drawnow command will flush the event buffer, making sure all figures are plotted.

I've seen this work from 2007-2010, not sure if the latest or earlier versions support this, although I have no reason to suspect they don't.

fig1=figure;
fig2=figure;
drawnow;
[a b]=do_complex_processing;
change_current_figure(fig1)
plot(a);
change_current_figure(fig2)
plot(b);
link|improve this answer
1  
It works, it's magic. – Oli Dec 13 '11 at 16:33
Great! Are there any cases where you don't want this behaviour? – Nordlöw Dec 14 '11 at 10:19
1  
Doesn't help much though since plot() steals (my) window focus anyway and raise figure window. Can we prevent this too? I'm sitting on Ubuntu 11.10. – Nordlöw Dec 14 '11 at 10:36
@Nordlow: I'll edit my answer, but there is a few tricks to how to manage it. The trick I listed only works if the figure is already created. New figures always to go the front focus. – Pearsonartphoto Dec 14 '11 at 15:05
feedback

Your Answer

 
or
required, but never shown

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