plot issues [changeset for log format of axes]

Ben Abbott bpabbott at mac.com
Thu Jun 4 22:23:33 CDT 2009


On Jun 4, 2009, at 1:02 PM, John W. Eaton wrote:

> On  4-Jun-2009, Ben Abbott wrote:
>
> | For both colorbars as well as log/semilogy plots, this produces the
> | proper result for me.
> |
> | Please verify this works as expected for you as well.
>
> | +  if (strncmpi (scale, "lo", 2))
>
> Please use
>
>  strcmp (scale, "log")
>
> instead.  If we modify Octave to accept the shortest case-insensitive
> match for radio property values, we will also ensure that the property
> value is set to the full value with lower-case letters.  So
>
>  set (gca (), "yscale", "lin")
>  set (gca (), "yscale", "linea")
>  set (gca (), "yscale", "LIN")
>
> etc. will all result in
>
>  get (gca (), "yscale")
>
> returning "linear".
>
> jwe

Good point. I pushed the correction.

Ben



More information about the Bug-octave mailing list