starting documentation

This commit is contained in:
Thomas Capricelli
2009-11-09 03:07:36 +01:00
parent ecbcdafb0f
commit cddc83752c
4 changed files with 16 additions and 3 deletions

View File

@@ -1,4 +1,12 @@
/**
* \brief Performs non linear optimization over a non-linear function,
* using a variant of the Levenberg Marquardt algorithm.
*
* Check wikipedia for more information.
* http://en.wikipedia.org/wiki/Levenberg%E2%80%93Marquardt_algorithm
*/
template<typename FunctorType, typename Scalar=double>
class LevenbergMarquardt
{