From: Jenny on
Hi,

i wish to display several graph plots each in different Figure
windows at once,

However, each time i plot(), the new plot will be displayed over the
original plot. I know u can use subplot() to show them all in the
same figure.

But was just wondering how u could output several different figure
plots at once, instead of overwriting the previous display.

any helps greatly appreciated, thanks!

jenny
From: Raghu on
hi jenny...

try using hold on; command....

may it can help...

Jenny wrote:
>
>
> Hi,
>
> i wish to display several graph plots each in different Figure
> windows at once,
>
> However, each time i plot(), the new plot will be displayed over
> the
> original plot. I know u can use subplot() to show them all in the
> same figure.
>
> But was just wondering how u could output several different figure
> plots at once, instead of overwriting the previous display.
>
> any helps greatly appreciated, thanks!
>
> jenny
From: Neo on
hi,

please use the command

Pause

figure

before using plot

Hope this helps

shriram

>
> i wish to display several graph plots each in different Figure
> windows at once,
>
> However, each time i plot(), the new plot will be displayed over the
> original plot. I know u can use subplot() to show them all in the
> same figure.
>
> But was just wondering how u could output several different figure
> plots at once, instead of overwriting the previous display.
>

From: Dan Pearce on
Just use the figure command.

x = rand(10,1);
y = rand(10,1);
z = rand(10,1);

plot(x, y, 'r*') % Makes the origional plot

figure % Defines a new figure to work on
plot3(y,x,z, 'ko') % Applies plot to new figure etc...
view(3)
grid on

figure
bar(x)

Hope this helps

From: Vladimir Milicev on
Hi Jenny,

It can't be simpler. All you're to do is write :

figure(1) % in front of the first "plot"
figure(2) % in front of the second "plot"

and so on.
 | 
Pages: 1
Prev: Correlation
Next: Bispectrum Estimation