How can I perform multivariable polynomial curve fitting?
44 ビュー (過去 30 日間)
古いコメントを表示
Mitchell
2013 年 5 月 15 日
コメント済み: Abdullah Danyal Saeed
2016 年 11 月 24 日
Hey Community! I am looking to perform a polynomial curve fit on a set of data so that I get a multivariable polynomial. I have successfully been able to fit a variable on an independent set using polyfit(). In my case, that was "voltage as a function of current." I want to be able to perform a fit that gives me a function for something like, "voltage as a function of current and temperature." Any ideas?
Cheers!
1 件のコメント
採用された回答
Shashank Prasanna
2013 年 5 月 15 日
You can use the curve fitting toolbox (cftool) or the statistics toolbox (regress, LinearModel.fit, NonLinearModel.fit) to perform multiple linear regression.
If you don't have any of those toolboxes then you can set up your own optimization problem to fit your function as below:
2 件のコメント
Shashank Prasanna
2013 年 5 月 15 日
編集済み: Shashank Prasanna
2013 年 5 月 15 日
1) Yes Z = f(X,Y)
2) If you don't have same size data, you may have to interpolate.
その他の回答 (2 件)
cr
2013 年 5 月 15 日
I dont think basic Matlab has got that ability. You will need curve fitting toolbox to do surface fitting. See this link: http://www.mathworks.in/help/curvefit/surface-fitting.html
Regards.
David Graff
2015 年 4 月 27 日
Use the excellent polyfitn package at http://www.mathworks.com/matlabcentral/fileexchange/34765-polyfitn . I love it and use it all the time.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with Curve Fitting Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!