|
From: Daniel J S. <dan...@ie...> - 2017-10-19 18:20:30
|
On 10/19/2017 01:05 PM, Achim Gratz wrote: > Achim Gratz writes: >> Well, once I see it appear in the repo I'll do a new build and run our >> plotting scripts @work against it. I had to rollback to 5.0.7 pretty >> quickly so I can't really say if there were no other problems, but >> nothing else that was glaringly obvious. > > So I finally did that today and there is still one tiny bit of > regression left (I could have seen that in my original test cases > already, but I didn't look closely enough). In the following example > you'll see that the tics are only starting from 10^0=1 instead of from > the smallest fractional power of of 10. > > --8<---------------cut here---------------start------------->8--- > set log x 10 > set mxtics 10 > set xtics 10 > set xrange [1e-3*pi:pi] > plot sin(x) > --8<---------------cut here---------------end--------------->8--- Did you mean to write set xtics 0.1 rather than 10? For mxtics the number means frequency <freq> (i.e., how many intervals to break into), while for xtics the number means increment <incr> (i.e., the length of each interval). With xtics increment of 10 there are no visible ticks on the x axis. Dan |