help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: multiplot; how 2 use


From: Miquel Cabanas
Subject: Re: multiplot; how 2 use
Date: Wed, 04 Jun 2003 18:44:47 +0200
User-agent: Mutt/1.3.28i

hi,

go figure! actually go figure ()  ;)

try 

n = 0:1:10
x = sin (n);
y = sin (n);

figure (1);
plot (n,x)

figure(2);
plot (n,y)

check "help figure" for more information


On Wed, Jun 04, 2003 at 02:11:44AM -0500, Som Shekar Chand wrote:
> 
> How to get the plot in different windows?
> example:
> n=0:1:10
> x=sin(n);
> y=sin(n)
> plot(n,x)
> plot(n,y)
>  
> %%%%%%%%%%%%%
> both plot are obtained in single windows which is not intended.
>  

Miquel

-- 
Miquel E Cabanas ------------------------------------------------------
SeRMN, Universitat Autonoma de Barcelona (address@hidden)
------------------------------------------o-oo--ooo---ooo--oo-o--------



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]