Data Fitting

MATLAB function for data fitting
217 Downloads
Aktualisiert 3 Jun 2016

File name: 'fitdata.m'. MATLAB function for data fitting based on smallest
RMSE. Regression will be performed on the data by using the following
models:
- Straight line (a + b*x)
- 2nd polynomial (a + b*x^2)
- Square root (a + b*sqrt(x))
- Logarithmic (base 10) (a + b*log10(x))
- Exponential (a + b*exp(x))
First, it is determined if data shows an off-linear profile by checking if
the slope is significantly altering. If so, the data will be regressed on
all other models except the straight line model. If no significant
deviating slope is found, the straight line model is considered as best
fit.

In case an off-linear profile has been detected, the best fit of any
other proposed model is determined by calculating the root mean squared
error (RMSE). The best regression line is considered as the one in which
the RMSE is the smallest.

Four input arguments: 'X', 'Y', 'x_label', 'y_label'
Ouput: - A plot of the best fitting regression line
- Table containing:
* Model type
* R2
* RMSE
* Regression coefficients

X: Column vector containing the x-variable (independent variable)
Y: Column vector containing the y-variable (dependent variable)
x_label: Label for x-axis (optional)
y_label: Label for y-axis (optional)

Required input syntax: fitdata(X,Y)
Optional input syntax: fidata(X,Y,x_label,y_label)

Developed by Joris Meurs BASc (2016)

Zitieren als

Joris Meurs (2024). Data Fitting (https://github.com/jorismeurs/Data_Fitting), GitHub. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2014b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Descriptive Statistics finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Versionen, die den GitHub-Standardzweig verwenden, können nicht heruntergeladen werden

Version Veröffentlicht Versionshinweise
1.0.0.0

Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.
Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.