Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nelder-Mead Algorithm in boost library

I was wondering if the Nelder-Mead Algorithm is implemented in c++ boost library like the toms748_solve. I couldn't find it in the documentation and I ask you before implement the code my self. Thanks a lot.

like image 733
Ariel Avatar asked Jun 30 '14 08:06

Ariel


1 Answers

I found that the amoeba (Nelder-Meade downhill simplex) algorithm is implemented by vnl library (http://public.kitware.com/vxl/doc/release/core/vnl/html/classvnl__amoeba.html#details), so I'm going to use this library instead of boost. I know that I've been looking for an implementation of this algorithm using the boost::math library and this answer is not related directly with my question, but perhaps it could be useful for others too.

like image 195
Ariel Avatar answered Sep 22 '22 06:09

Ariel