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

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

[Octave-bug-tracker] [bug #31157] plotyy: handling options the same way


From: Rik
Subject: [Octave-bug-tracker] [bug #31157] plotyy: handling options the same way as plot
Date: Wed, 03 Nov 2010 02:25:23 +0000
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.12) Gecko/20101027 Ubuntu/9.10 (karmic) Firefox/3.6.12

Update of bug #31157 (project octave):

                  Status:                    None => Need Info              

    _______________________________________________________

Follow-up Comment #1:

How do you forsee people using the additional plot options?  The options
would be applied to both plots equally which doesn't seem very useful.  For
example, plotyy (...,"b+") would set both plots to the same color and using
the same marker.  This makes the two plots hard to distinguish from one
another.

Example:

x = linspace(-pi,pi,100);
y1 = sin(x);
y2 = cos(x);
ax = plotyy (x, y1, x - 1, y2, @plot, @plot, "b+");


Attached are two sample plots.  One was made using the commands above and the
second was done with the original code showing the automatic selection of
different colors.

If you do need to set common properties it seems like it would be simpler to
use the 3 return arguments from plotyy and then the set function.  Using your
example:

[ax, h1, h2] = plotyy (x, y1, x - 1, y2, @plot, @semilogy);
set ([h1,h2], "linewidth", 2); 


    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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