|
From: theozh <th...@gm...> - 2016-07-11 19:56:21
|
Hello, while trying to link logarithmic axes, I get unexpected results. The y and y2 axis should be e.g. just shifted by two orders of magnitude. So, I thought that the following command would do it. set link y2 via y*0.01 inverse y*100 However, that's not what I get. See copy&paste example below. Although, it seems to work on linear scale. How can I do it with logarithmic axes properly? I am missing anything? Thanks for any hints. # link logarithmic axes reset set multiplot layout 2,1 set xrange [-12:2] set logscale y set ytics format "%g" nomirror set grid ytics set yrange [1e-12:0.01] set logscale y2 set y2tics format "%g" nomirror set link y2 via y*0.01 inverse y*100 plot 10**x axis x1y1, 10**x axis x1y2 unset logscale y unset logscale y2 replot unset multiplot |