How to perform control sequences under Gnuplot please? I need to make something like
if (x == nan)
set xrange[]
else
set xrange[10:30]
I tried something like
( x > 100000 ) ? (set xrange[]) : (set xrange[10:30])
... buth without success! I spent hours trying to solve this!! Any help please? At worst I can create a shell script an manage this, but I think there should be some control sequences to fix this.