- 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 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Drew
on 22 Aug 2023
Edited: Drew
on 23 Aug 2023
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 Comments
See Also
Categories
Find more on Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!