I would like to use the fit command for multiple files in gnuplot. I know that for one file the command is for example:
f(x)=a*x+b
fit f(x) 'file1' u ($18/-200):($4/200) via a, b
Now instead of a single file I would like to have multiple ones ('file1','file2','file3'etc.) and find the best a, b, parameters that fit all data sets.
This question is similar to this one but with different files.
Thanks!