Fitting linear log regression with fitlm function
显示 更早的评论
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!
回答(1 个)
Star Strider
2017-11-6
编辑:Star Strider
2017-11-6
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.)
类别
在 帮助中心 和 File Exchange 中查找有关 Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!