|
From: ivana r. <iva...@mf...> - 2017-12-30 07:15:13
|
Hi Sergei, there may be some rubbish that lures gnuplot to find xrange although "plotting" 'with table' try put 'reset' in the begin of the code. Alternatively, you can also plot your data directly, if their amount is ok with the PC performance: # begin gnuplot code # replace datafile with real filename file="datafile" # set empty data separator set datafile separator "" # use string functions to extract columns of a given width plot file u (real(stringcolumn(1)[11:14])):(real(stringcolumn(1)[16:])) w lp t "direct" # end of gnuplot code sincerely Iva |