MATLAB: How to focus on figure-window

figurefocusmatlab core

Let's two figure are opened
Hfig1=figure(1);Hfig2=figure(2);
How to focus (make active) one of them?
I haven't find relevant figure property…

Best Answer

Using figure again should work:
>> figure(Hfig1)