You can open multiple plot windows using the figure function.
For example
figure (1);
fplot (@sin, [-10, 10]);
figure (2);
fplot (@cos, [-10, 10]);
creates two figures, with the first displaying a sine wave and the second a cosine wave. Figure numbers must be positive integers.