Good non linear Regression

2 vues (au cours des 30 derniers jours)
Jessica Larry
Jessica Larry le 30 Avr 2020
Commenté : Alex Sha le 1 Mai 2020
I have the following data:
x = [15, 25, 35, 45, 55, 65, 75]
y = [22.3, 27.5, 28.8, 29.9, 29.6, 27.4, 23.3]
How could I create a good regression that would fit the data above best. I'm trying to plot them both on the same graph so you can see the different between both lines.
  4 commentaires
Ameer Hamza
Ameer Hamza le 1 Mai 2020
Is this result also from 1stOpt? Did you specify the equation or the toolbox is also able to find a suitable equation to fit the data points automatically? I have never tried it, so I am not aware of all the features.
Alex Sha
Alex Sha le 1 Mai 2020
There is also a function in 1stOpt in which the best fit model function could be serached automatically according to the data user provided.

Connectez-vous pour commenter.

Réponse acceptée

Ameer Hamza
Ameer Hamza le 30 Avr 2020
Modifié(e) : Ameer Hamza le 30 Avr 2020
One option is to use smoothingspline option from the curve fitting toolbox
x = [15, 25, 35, 45, 55, 65, 75];
y = [22.3, 27.5, 28.8, 29.9, 29.6, 27.4, 23.3];
model = fit(x(:), y(:), 'smoothingspline');
plot(x, y, 'r+');
hold on
xv = linspace(min(x), max(x));
plot(xv, model(xv), 'b-');
  2 commentaires
Jessica Larry
Jessica Larry le 30 Avr 2020
Modifié(e) : Jessica Larry le 30 Avr 2020
I was able to resolve it, thank you so much for the help!!
Ameer Hamza
Ameer Hamza le 30 Avr 2020
Glad to be of help.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Linear and Nonlinear Regression dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by