|
From: pemilti <mic...@lt...> - 2008-09-03 12:07:06
|
Thomas Sefzick wrote: > > simulate the loop with the 'reread' command > > see > help string > and > help reread > > (or > http://www.gnuplot.info/docs/node151.html > and > http://www.gnuplot.info/docs/node69.html > ) > > OK, but how I can read the files with consecutive numbering, example: file1.dat, file2.dat,... and write the output to out1.gif, out2.gif,..? I've got a file whose name is used to generate other filenames with consecutive numbering. I want to do this like this schema: counter = counter + 1; set output 'out_'counter'.gif' plot 'NetzAus_'.counter'.dat' using 1:2 with lines axes x1y1 title "Strom [A]" if (counter<= counterMax) reread -- View this message in context: http://www.nabble.com/read-and-plot-a-lot-of-files-with-consecutive-numbering-tp19272692p19287920.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |