help-octave
[Top][All Lists]
Advanced

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

Re: Octave.app 2.9.13 for Mac OS X


From: Henry F. Mollet
Subject: Re: Octave.app 2.9.13 for Mac OS X
Date: Tue, 31 Jul 2007 16:03:11 -0700
User-agent: Microsoft-Entourage/11.1.0.040913

On 7/29/07 7:56 AM, Vic Norton at address@hidden wrote:

> 
>        The command
>           octave-2.9.13> plot(rand(100,1))         (octave-2.9.13 app)
>        produces a Figure 1 with no key in a light blue that does seem to
>        correspond to any line-type shown in the Figure 0 produced by
>           gnuplot> test
> 
>        I'm not quite sure what is going on here. I guess some internal
>        octave parameters are set differently. I wonder what the default
>        line-type is in the octave-2.9.13 app. Perhaps I should install
>        the gnuplot-4.2.0 app that came with the octave-2.9.13 app
>        "Extras" and see what this does with "test". (I just did the
>        gnuplot-4.2.0 app installation. The "test" results are the same.)
> 
> Regards,
> 
> Vic
> 

octave-2.9.13/gnuplot4.2.0 has no default key, uses blue (=3) as default
color instead of red (=1) and uses a linewidth of about 0.5 instead of 1.0.
Therefore we get light blue instead of red and also no key.

octave:8> plot (x, sin(x)) #where I used x = linspace (0,pi,100)
in octave-2.1.71/gnuplot-4.0 will require the following in
octave-2.9.13/gnuplot4.2.0 to produce about the same plot:

octave-2.9.13:55> plot (x,sin(x),"-1;line 1;","linewidth",1)

Henry




reply via email to

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