Fit and Polyfit (LAR vs. Least squares)
28 次查看(过去 30 天)
显示 更早的评论
I am trying to better understand the difference between fit and polyfit. Am I right to think that fit for polynomials still uses the least absolute residual robust (LAR) method rather than the least squares method (polyfit)?
0 个评论
采纳的回答
Guru
2013-7-4
You can find out by asking for the output argument:
[fitobject,gof,output] = fit(x,y,fitType)
output.algorithm
But the real difference between fit and polyfit are the options that you can choose as well as polyfit is strictly limited to polynomials and uses the least squares method.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!