Library function logistic not found when using fit
3 次查看(过去 30 天)
显示 更早的评论
I'm trying to fit a logistic function to my data:
x = 20:10:80;
y = [0, 0.0625, 0.5882, 0.8235, 0.9375, 1, 1];
According to the mathworks documentation (here and here), the fit function should be able to take 'logistic' as the model name. But when I run the function, I get this error
fitObj = fit(x',y', 'logistic');
Error using fittype>iCreateFromLibrary
Library function logistic not found.
I'm using Matlab 2023a, unless this has been updated in 2023b can somebody help me figure out what's going wrong please
0 个评论
采纳的回答
Thomas
2023-12-19
1 个评论
Star Strider
2023-12-19
If it’s not available, see List of Library Models for Curve and Surface Fitting to create it yourself.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fit Postprocessing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!