Data Fitting

MATLAB function for data fitting
217 download
Aggiornato 3 giu 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)

Cita come

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

Compatibilità della release di MATLAB
Creato con R2014b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Descriptive Statistics in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!

Le versioni che utilizzano il ramo predefinito di GitHub non possono essere scaricate

Versione Pubblicato Note della release
1.0.0.0

Per visualizzare o segnalare problemi su questo componente aggiuntivo di GitHub, visita GitHub Repository.
Per visualizzare o segnalare problemi su questo componente aggiuntivo di GitHub, visita GitHub Repository.