[SciPy-Dev] parameters of fitting data

Krzysztof Berniak krzysztof.berniak at gmail.com
Thu Nov 24 11:27:13 EST 2011


Hi,

Thanks for your answer. Your idea works, but not im my example.
When I did example on this page:
http://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.curve_fit.htmleverythink
works done. I use sqrt(np.diag(cov)) and I get the standard
errors.
But when I use this in my code

func = lambda z,a,b: a*np.exp(z*b)
popt, pcov = optimize.curve_fit(func, z,f, maxfev = 1000)
errors = sqrt(np.diag(pcov))

It displays:
RuntimeError: Optimal parameters not found: Number of calls to function has
reached maxfev = 1000.
When I increase value of maxfev I have the same problem.

regards and please help,
Cristopher
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/scipy-dev/attachments/20111124/c1bedaa7/attachment.html>


More information about the SciPy-Dev mailing list