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 44 97 How (if possible) can I plot that as if it were
1 23 42 48 2 49 89 33 3 39 44 97 using the 1,2,3,.. (first column) as x ?
doing something like: plot "file.dat" using (lineNumber):3 for instance.