- Core MATLAB: Simple linear regression using the \ operator.
- Core MATLAB: Fit a first-order linear polynomial with polyfit. https://www.mathworks.com/help/matlab/ref/polyfit.html . Note that the "Extended Capabilities" section of the doc page mentions that polyfit supports "C/C++ Code Generation".
- With Statistics and Machine Learning Toolbox: Use fitlm. https://www.mathworks.com/help/stats/fitlm.html
Does Matlab provide online linear fitting?
3 次查看(过去 30 天)
显示 更早的评论
Hi all,
I am looking for Matlab function or framework to perform linear fitting online, meaning I am looking for updating my linear model once new observations become available.
0 个评论
回答(1 个)
Drew
2023-8-22
编辑:Drew
2023-8-23
There are many ways to perform linear fitting in MATLAB. This page lists some of the methods: https://www.mathworks.com/help/matlab/data_analysis/linear-regression.html.
Here are some options (out of many) from that page:
You mention that you want to "perform linear fitting online". What is your deployment scenario? You can take a look at some deployment options at https://www.mathworks.com/company/newsletters/articles/selecting-a-matlab-application-deployment-strategy.html, https://www.mathworks.com/help/compiler/getting-started-with-matlab-compiler.html and https://www.mathworks.com/help/compiler/standalone-applications.html.
A more general intro to data fitting in MATLAB can be found at https://www.mathworks.com/discovery/data-fitting.html
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!