Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

fminsearch

Bob_Fratantonio
Beginner
1,390 Views
Hello,
I am trying to write an optimization routine equivalent to MATLAB's fminsearch function. Am I on my own here, or are there routines already written?

Thanks much,
Bob
0 Kudos
3 Replies
DavidWhite
Valued Contributor II
1,390 Views

Bob,

If you know what algorithm it uses, you may be able to find something on Netlib (netlib.org). Other codes may do similar searches, even if the algorithm is different.

Regards,

David

0 Kudos
Jugoslav_Dujic
Valued Contributor II
1,390 Views
According to fminsearch documentation, the keywords are "Nelder Mead", and a Fortran implementation can be found at
http://www.mikehutt.com/neldermead.html.
0 Kudos
Bob_Fratantonio
Beginner
1,390 Views
Thanks guys!
0 Kudos
Reply