Commit 4ac5c193 authored by Davis King's avatar Davis King

Replaced a funny character with the normal ASCII one.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403935
parent 81c0f74a
......@@ -44,7 +44,7 @@ namespace dlib
- This function performs an unconstrained minimization of the least squares
function g(x) defined by:
- g(x) = sum over all i: 0.5*pow( f(list(i),x), 2 )
- This method combines the LevenbergMarquardt method with a quasi-newton method
- This method combines the Levenberg-Marquardt method with a quasi-newton method
for approximating the second order terms of the hessian and is appropriate for
large residual problems (i.e. problems where the f() function isn't driven to 0).
In particular, it uses the method of Dennis, Gay, and Welsch as described in
......@@ -92,7 +92,7 @@ namespace dlib
- This function performs an unconstrained minimization of the least squares
function g(x) defined by:
- g(x) = sum over all i: 0.5*pow( f(list(i),x), 2 )
- This method implements a plain LevenbergMarquardt approach for approximating
- This method implements a plain Levenberg-Marquardt approach for approximating
the hessian of g(). Therefore, it is most appropriate for small residual problems
(i.e. problems where f() goes to 0 at the solution).
- Since this is a trust region algorithm, the radius parameter defines the initial
......
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