[SciPy-user] xplt.plot
Arnd Baecker
arnd.baecker at web.de
Wed Jul 23 09:30:40 EDT 2003
Hi Nils,
do you mean something like this?
###########
from scipy import *
from scipy.xplt import *
x=arange(0.0,2.0*pi,0.01)
y1=sin(x)
y2=cos(x)
window(0)
plot(x,y1)
title ("sin") # yes, the title has to be after the plot !
window(1)
plot(x,y2)
title ("cos")
############
Notice that only up to 7 windows can be opened
(moreover scipy.xplt has its rough edges ... ;-),
for example I never understood, why the title has to
be given after the plot ...)
Arnd
On Wed, 23 Jul 2003, Nils Wagner wrote:
> Hi all,
>
> How can I plot two curves on two different graphs with xplt ?
> A small example would be appreciated.
>
> Thanks in advance,
>
> Nils
>
> _______________________________________________
> SciPy-user mailing list
> SciPy-user at scipy.net
> http://www.scipy.net/mailman/listinfo/scipy-user
>
More information about the SciPy-User
mailing list