Commit b4542c43 authored by Davis King's avatar Davis King

Updated docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403936
parent 4ac5c193
......@@ -36,6 +36,8 @@
<item>find_max_bobyqa</item>
<item>find_max_trust_region</item>
<item>find_min_trust_region</item>
<item>solve_least_squares</item>
<item>solve_least_squares_lm</item>
</section>
<section>
......@@ -469,6 +471,37 @@ subject to the following constraint:
<!-- ************************************************************************* -->
<component>
<name>solve_least_squares</name>
<file>dlib/optimization.h</file>
<spec_file link="true">dlib/optimization/optimization_least_squares_abstract.h</spec_file>
<description>
This is a function for solving non-linear least squares problems. It uses a method
which combines the traditional Levenberg-Marquardt technique with a quasi-newton
approach. It is appropriate for large residual problems (i.e. problems where the
terms in the least squares function, the residuals, don't go to zero but remain
large at the solution)
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>solve_least_squares_lm</name>
<file>dlib/optimization.h</file>
<spec_file link="true">dlib/optimization/optimization_least_squares_abstract.h</spec_file>
<description>
This is a function for solving non-linear least squares problems. It uses
the traditional Levenberg-Marquardt technique.
It is appropriate for small residual problems (i.e. problems where the
terms in the least squares function, the residuals, go to zero at the solution)
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>find_min_trust_region</name>
<file>dlib/optimization.h</file>
......
......@@ -39,6 +39,8 @@
<term file="optimization.html" name="lagrange_poly_min_extrap"/>
<term file="optimization.html" name="line_search"/>
<term file="optimization.html" name="find_min"/>
<term file="optimization.html" name="solve_least_squares"/>
<term file="optimization.html" name="solve_least_squares_lm"/>
<term file="optimization.html" name="find_min_trust_region"/>
<term file="optimization.html" name="find_max_trust_region"/>
<term file="optimization.html" name="solve_trust_region_subproblem"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment