Exponential Fitting function not plotting the same information as the data points?
Mostrar comentarios más antiguos
Hi, my brain is pickled with this one. Below are the two graphs I have plotted with exp2 function. The points do not match the curve, and this is ultimately changing my entire answer, as it is giving the wrong values out, and I cannot understand why?
Here is the code I am using, both graphs plot a concentration against time, but yet give different results:
CH4_fit = fit(Res_time, CH4_exp, 'exp2');
CH4_coeff = coeffvalues(CH4_fit); %Co-efficient values for exponential fitting
CH4_pred =(CH4_coeff(1)*exp(CH4_coeff(2)*Res_time)) + ...
(CH4_coeff(3)*exp(CH4_coeff(4)*Res_time));
plot(Res_time,CH4_exp, Res_time, CH4_pred);
Can I just added that the exact same data was run on different computers, and it gave the same equation co-efficients exactly (to 4.dp) and the same times, but yet still outputs different concentrations on my version? I have the R2018b, and I have just used default settings (don't know how to change anything, so I definitely haven't).
7 comentarios
David Goodmanson
el 14 de Feb. de 2019
Editada: David Goodmanson
el 15 de Feb. de 2019
Hi Lewis,
could you explain a bit more? Is the second plot a good fit done on another computer?
Lewis Brammeld
el 14 de Feb. de 2019
David Goodmanson
el 14 de Feb. de 2019
so are you saying the fit in the second image (fig 5) is not good enough?
Lewis Brammeld
el 14 de Feb. de 2019
David Goodmanson
el 14 de Feb. de 2019
Editada: David Goodmanson
el 14 de Feb. de 2019
I don't know what you mean by 'the fit for the line' (is it in a buried plot?). I think for anyone to weigh in with an opinion you will have to provide more detail on the problem.
John D'Errico
el 14 de Feb. de 2019
Editada: John D'Errico
el 14 de Feb. de 2019
We don't have your data. That makes it impossible to really help you. Please attach the data points as a .mat file to a comment.
It may be true that a picture is worth a thousand words, but then real data? More like 10 thousand words. ;-)
Lewis Brammeld
el 14 de Feb. de 2019
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Measurements and Feature Extraction en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
