|
From: Hans-Bernhard B. <HBB...@t-...> - 2009-09-07 16:10:57
|
babelproofreader wrote: > I know I can plot the beginning and end of a data file using the <head & > <tail commands, Not quite. The commands are 'head' and 'tail', without the '<'. '<' is just the marker for gnuplot to know that you wanted input from a command's output, rather than a simple file. And generally you shouldn't need 'head' or 'tail' --- gnuplot has the 'every' option to the plot command to take care of those. > but what syntax do I use to plot a section from the middle? 'every', or a combination of 'head' and 'tail': plot '< head -100 file | tail -50' |