help-octave
[Top][All Lists]
Advanced

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

Re: Two superposed plots


From: Dmitri A. Sergatskov
Subject: Re: Two superposed plots
Date: Wed, 21 Jun 2006 09:12:55 -0600

On 6/21/06, Martin Senator <address@hidden> wrote:
My problem is to find a convenient way to superpose
the two plots.  Since I am using Octave for the first,
I can also use it to draw the second---it's more convenient
than going to Xfig.  But I'm still left with the
problem of getting the two 'drawings' on one Figure.


Do you mean something like that:

x=linspace(-10,10,101);
y1 = sin(x);
plot(x, y1,"-r;Sin;")  # plot 1
hold on
y2 = 2+cos(x);
plot(x-20, y2, "-b;Cos;") # plot 2

Dmitri.
--


reply via email to

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