python - Scipy: difference between optimize.fmin and optimize.leastsq -


what's difference between scipy's optimize.fmin , optimize.leastsq? seem used in pretty same way in this example page. difference can see leastsq calculates sum of squares on own (as name suggest) while when using fmin 1 has manually. other that, 2 functions equivalent?

different algorithms underneath.

fmin using simplex method; leastsq using least squares fitting.


Comments

Popular posts from this blog

actionscript 3 - TweenLite does not work with object -

php - How can I edit my code to echo the data of child's element where my search term was found in, in XMLReader? -

c# - Global Variables vs. ASP.NET Session State -