Library function log10 not found when using fit
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sean Morgan
el 22 de Mayo de 2024
Comentada: Steven Lord
el 23 de Mayo de 2024
I have been trying to fit some data using a lograthimic fit with the following command, where ind_array and sample_array are my x and y data respectively:
expo_curve=fit(ind_array,sample_array,'log10');
However, I keep getting the following error:
Library function log10 not found.
The weird thing is I was using this exact code like 3 weeks ago and was able to generate the fit. So I am unsure what is going wrong, and the API says that 'log10' is a valid fittype for the fit command.
Any help would be appreciated,
Thank you,
Sean
0 comentarios
Respuesta aceptada
John D'Errico
el 23 de Mayo de 2024
Editada: John D'Errico
el 23 de Mayo de 2024
x = rand(10,1);y = x + rand(10,1);
fit(x,y,'log10')
It is almost always, ALWAYS the case that when this happens, you were previously using a different, more recent MATLAB release.
As you can see above, it does work. But, to be honest, I did not recall that being one of the valid fit types. So I tried it on my computer, and it failed, using R2023a.
And that means they just introduced that option. So you were possibly using an online MATLAB, or a new release on some other computer. But today, you were using an older release, and the option did not exist then. They must have alloed that option in only the last year. I could check the release notes, but I am sure that is the case.
What can you do? Well, make sure your version is a sufficiently recent one. Otherwise, you could use a custom fittype of that form. For example, this would work, even in an older release:
mdl = fittype('a*log10(x) + b',indep = 'x')
fittedmdl = fit(x,y,mdl)
Note that because the model is actually linear in the parameters, fit was smart enough to not bother needing starting values for the 'log10' option.
3 comentarios
John D'Errico
el 23 de Mayo de 2024
Been there, done that. I tend to keep old releases around, only discarding them when they get 4 or 5 deep. Sometimes it is useful to have an older one, to test some code that someone has an issue with. But the problem is I sometimes end up using one of the older ones by accident.
Steven Lord
el 23 de Mayo de 2024
The Release Notes confirm that the ability to specify logarithmic fit types was introduced in Curve Fitting Toolbox in release R2023b.
Más respuestas (1)
Kunal Kandhari
el 22 de Mayo de 2024
Since it worked previously, you may have a path problem.
Run these from a script or your Command Window:
restoredefaultpath
rehash toolboxcache
rehash path
savepath
Then run your code again.
2 comentarios
Ver también
Categorías
Más información sobre Linear and Nonlinear 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!