Tom Wright
2008-03-20 14:05:34 UTC
Hi all
I've recently found the plotyy function in Octave 3.0.0 and it appears to
have some strange behaviour: once I've created one plot with plotyy, that
Am I setting up or using this function wrong, or is this a genuine bug?
Thanks!
I've recently found the plotyy function in Octave 3.0.0 and it appears to
have some strange behaviour: once I've created one plot with plotyy, that
x=[1:10];
y=rand(size(x));
z=rand(size(x))*10;
plotyy(x,y,x,z);
# Works as expectedy=rand(size(x));
z=rand(size(x))*10;
plotyy(x,y,x,z);
q=rand(size(x))*100;
plotyy(x,y,x,q);
# Has both the z and the q values and axes on the graphplotyy(x,y,x,q);
plot(x,y)
# Has an inner set of axes, with z and q values on it.Am I setting up or using this function wrong, or is this a genuine bug?
Thanks!
--
I'm at CAMbridge, not SPAMbridge
I'm at CAMbridge, not SPAMbridge