octave-maintainers
[Top][All Lists]
Advanced

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

Re: tests in log-scale plots


From: c.
Subject: Re: tests in log-scale plots
Date: Wed, 7 Sep 2011 13:48:29 +0200

On 7 Sep 2011, at 13:44, bpabbott wrote:

> Carlo, what is the value for the 'ydir' property after the "loglog(a,b)" plot?
> 
> Is is actually reversed in 2007b? Since -10 < -1, I expect the setting of 
> ydir is still normal.
> 
> Ben

Ben,

Now I see what you mean:

>> loglog (a, b)     
>> get (gca, 'ydir')

ans =
normal

>> 

On the other hand, to reproduce the same plot using abs (b) I have to do

>> loglog (a, abs(b))
>> set (gca, 'ydir', 'reverse')
>> get (gca, 'ydir')

ans =
reverse

c.

reply via email to

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