Ask Your Question
1

sage.numerical.optimize.find_local_minimum or scipy.optimize.fminbound?

asked 2015-03-16 12:31:19 +0200

Petr gravatar image

Could anyone explain the basic difference between these two functions? Sage's documentation says that find_local_minimum uses fminbound, so... what find_local_minimum does?

Also, is there a performance difference between them?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2015-03-16 13:08:09 +0200

slelievre gravatar image

Note that you can explore by yourself with ? and ??.

Check the documentation:

sage: sage.numerical.optimize.find_local_minimum?
sage: import scipy.optimize
sage: scipy.optimize.fminbound?

Check the source code:

sage: sage.numerical.optimize.find_local_minimum??
sage: scipy.optimize.fminbound??
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2015-03-16 12:31:19 +0200

Seen: 407 times

Last updated: Mar 16 '15