Skip to content

Commit f46984a

Browse files
committed
Add note about SimpleNewtonRaphson
1 parent b25eb74 commit f46984a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/src/solvers/NonlinearLeastSquaresSolvers.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ Solves the nonlinear least squares problem defined by `prob` using the algorithm
1919
handling of sparse matrices via colored automatic differentiation and preconditioned
2020
linear solvers. Designed for large-scale and numerically-difficult nonlinear least squares
2121
problems.
22+
- `SimpleNewtonRaphson()`: Newton Raphson implementation that uses Linear Least Squares
23+
solution at every step to compute the descent direction. **WARNING**: This method is not
24+
a robust solver for nonlinear least squares problems. The computed delta step might not
25+
be the correct descent direction!
2226

2327
## Example usage
2428

0 commit comments

Comments
 (0)