[Matlab] Specify a figure to plot
Source
Matlab HelpSyntax
set(0,'CurrentFigure',figure_handle);Code
h1 = figure;h2 = figure;
set(0,'CurrentFigure',h1);
plot( x1, y1 );
set(0,'CurrentFigure',h2);
plot( x2, y2 );
Interesting people find this blog boring; only boring people find this blog interesting ...
No comments:
Post a Comment