Fitting linear log regression with fitlm function
Afficher commentaires plus anciens
I would like to fit y = log(x) + k using fitlm (linear regression). How can I specify such a model? This is linear regression so would like to use fitlm function and not the fitnlm. Thanks!
Réponses (1)
Star Strider
le 6 Nov 2017
Modifié(e) : Star Strider
le 6 Nov 2017
Try this:
mdl = fitlm(log(x), y);
It assumes a linear model (slope and intercept), so this is all that is necessary.
NOTE — This will work providing that ‘x’ is real and positive. (I mention that for clarity.)
Catégories
En savoir plus sur Regression dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!