Get exact curve parameters in the fit function
2 次查看(过去 30 天)
显示 更早的评论
Hi,
I have created and saved a cfit object using the fit() function.
How can I access the exact values of the coefficients? By exact I mean for example coefficients with 10 decimal places.
I am aware that I can access the coefficients using coeffvalues(fitobject) but this only gives the values with 4 decimal places. I am also aware that I can evaluate the fitobject for new data to get the exact result but this is not an option for me, I need the exact coefficient values for the use in an anonymous function.
Any help is appreciated
0 个评论
采纳的回答
the cyclist
2023-9-20
编辑:the cyclist
2023-9-20
The four decimal places are just the default display value. You can change that with the format command. For example, use format long before calling coeffvalues(fitobject).
pi
format long
pi
Alternatively, just store the value in a variable, and use the variable in your anonymous function.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!