MATLAB: Making a figure always on top

alwaysfiguretop

how could a figure be always on top of other windows?

Best Answer

If you have a handle to a figure.
h1 = figure;
plot(randn(100,1));
And after you create subsequent plots, you call:
figure(h1)
That will raise the figure above all others.
Wayne