Name

shg — Brings a window in the foreground

Calling Sequence

shg(h)

Parameters

h

handle or integer figure number

Description

If h is not provided, shg() brings the current active window in the foreground.

Examples

figure(0);
plot(1:10,sin(1:10));
figure(1);
plot(1:10,cos(1:10));
shg(0);

See Also

fig , clf

Authors

Stéphane Mottelet