2

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!

1 Answer 1

1

Like in the question you linked, also here you must combine all files to a single one. You can use e.g. the command line tool cat to do this on-the-fly:

f(x) = a*x + b
fit f(x) '< cat file1 file2 file3' using ($18/-200):($4/200) via a,b
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.