You may want to repeat the for loop for the 1:3 plots.
Something like this:
plot for [i=1:10] sprintf("File_%d",i) u 1:2 w l title sprintf("File_%d,
Col2",i) , for [i=1:10] sprintf("File_%d",i) u 1:3 w l title
sprintf("File_%d, Col3",i)
The title is just to make clear what you have plotted.
Maybe there are other ways to do it.
But is it what you were looking for?
|