Fitting linear log regression with fitlm function
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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!
0 comentarios
Respuestas (1)
Star Strider
el 6 de Nov. de 2017
Editada: Star Strider
el 6 de Nov. de 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.)
2 comentarios
Ver también
Categorías
Más información sobre Regression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!