Having “automatic” x

后端 未结 3 656
天涯浪人
天涯浪人 2020-12-29 04:45

Just a simple question (I imagine) but, lets say I have the following data file:

# no x data, it\'s sampled for instance each second.
23 42 48 
49 89 33
39 4         


        
3条回答
  •  失恋的感觉
    2020-12-29 05:32

    E.g. to plot the third line of the datafile:

    plot "DATAFILE" u 3
    

    or with awk:

    plot "

    Note that awk adds linenumbers, so the first column is linenumber.

    does the same, gnuplot is automatically using the line-number for the x-axis

提交回复
热议问题