|
From: <HBB...@t-...> - 2007-07-14 14:14:51
|
Martin Giersich wrote: > And i got rendering problems if i use data-clipping with lines and > linespoint render mode > > plot 'AGdata-test.dat' using 4:($3==1?$5:1/0) with lines,\ > 'AGdata-test.dat' using 8:($7==1?$9:1/0) with lines,\ > 'AGdata-test.dat' using 12:($11==1?$13:1/0) with lines Guess you've just found out why 1/0 is not the recommended way of spelling out "no valid data", in gnuplot. 0/0, which is well and truly undefined instead of just being infinite, usually works better. |