|
From: Mahmood N. <nt_...@ya...> - 2014-07-04 16:00:57
|
Hello, Gnuplot assigns an index of 0 to the first line of the data points. For example, these data points 1000 2000 3000 are interpreted as (0,1000) (1,2000) (2,3000). Problem is that when I run "set logscale x 2", it automatically discard the first line, 1000, so it plots (2^0,2000) (2^1,3000) How can I tell Gnuplot to "plot x=0 as normal and set logscale x 2 for x>=1" ? Regards, Mahmood |