octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #29569] the bottom right figure of second plot


From: Ben Abbott
Subject: [Octave-bug-tracker] [bug #29569] the bottom right figure of second plotyy demo incorrect
Date: Sat, 17 Apr 2010 16:07:43 +0000
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-US) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/5.0.342.9 Safari/533.2

Follow-up Comment #9, bug #29569 (project octave):

I've installed gnuplot 4.2.6 and see the same result as you. I looked that
the plot stream, but don't see anything unusual.

What is unusual is that the three examples below give very different
results.

figure(1)
clf
x = 0:0.1:2*pi; 
y1 = sin (x);
y2 = cos (x);
ax = plotyy (x, y1, x, y2);
xlabel ("X");
ylabel (ax(1), "Axis 1");
ylabel (ax(2), "Axis 2");
axis (ax(2), "square")

figure(2)
clf
x = 0:0.1:2*pi; 
y1 = sin (x);
y2 = exp(x - 1);
ax = plotyy (x, y1, x, y2)
xlabel ("X");
ylabel (ax(1), "Axis 1");
ylabel (ax(2), "Axis 2");
axis (ax(2), "square")

figure(3)
clf
x = 0:0.1:2*pi; 
y1 = sin (x);
y2 = (x - 1);
ax = plotyy (x, y1, x, y2)
xlabel ("X");
ylabel (ax(1), "Axis 1");
ylabel (ax(2), "Axis 2");
axis (ax(2), "square")

I have some errands to run. Later I'll try to create some simple gnuplot
commands to determine if the problem is with gnuplot or octave.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?29569>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

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