Fit model with 3 independent variables and many parameters to data?
2 views (last 30 days)
Show older comments
Justin Solomon
on 26 Oct 2012
Answered: Sander van Otterdijk
on 18 Apr 2019
Is it possible to use the fit() function to fit a model with 3 independent variables and many parameters (coefficients)? Reading through the documentation, I get the impression that Matlab only supports 2 independent variables. Any insight would be helpful.
Thanks, Justin
1 Comment
Matt J
on 26 Oct 2012
For more general kinds of fitting, you probably need Optimization Toolbox solvers.
Accepted Answer
Sean de Wolski
on 26 Oct 2012
Do you have the Statistics or Optimization Toolboxes? If so:
Optim:
* doc lsqcurvefit
* doc lsqlin
* doc lsqnonlin
Stats:
* doc NonlinearModel
* doc LinearModel
* doc regress
I'm missing many others, we can point you in a more specific direction if you have more details.
4 Comments
More Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!