|
From: Hans-Bernhard B. <HBB...@t-...> - 2012-01-26 20:52:42
|
On 26.01.2012 16:23, Graham, Jeff wrote: > I have not yet figured out how to create a single line plot where the x > axis values are in one file but each of the Y vectors are in their own > separate file. That's because there is not really all that much to figure out --- gnuplot won't do that. You'll have to merge each y file with the x file, at least on-the-fly, to make it usable for gnuplot. Unix-style text utilities can make that very easy. See 'help data special' to understand what this does: plot '< paste file1 file2' |