|
From: ivana r. <iva...@mf...> - 2017-02-13 10:42:53
|
Hi Goud,
> plot for [x=1:10] '*.vec' using 1:2 title 'Flow'.x
this is not how it works.
I guess you this solution:
#unix,linux
> files_to_plot=system("ls *.vec")
#windows
> files_to_plot=system("dir /b *.vec")
#then
> plot for [ no = 1 : words(files_to_plot) ] word(files_to_plot, no) using 1:2 title 'Flow'.no
Sincerely
Iva
|