How to fit a function with multiple files in gnuplot

时光怂恿深爱的人放手 提交于 2019-11-28 09:53:18

问题


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:


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


来源:https://stackoverflow.com/questions/25384477/how-to-fit-a-function-with-multiple-files-in-gnuplot

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!