Skip to content

Commit

Permalink
Add note about SimpleNewtonRaphson
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Oct 9, 2023
1 parent b25eb74 commit f46984a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/src/solvers/NonlinearLeastSquaresSolvers.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Solves the nonlinear least squares problem defined by `prob` using the algorithm
handling of sparse matrices via colored automatic differentiation and preconditioned
linear solvers. Designed for large-scale and numerically-difficult nonlinear least squares
problems.
- `SimpleNewtonRaphson()`: Newton Raphson implementation that uses Linear Least Squares
solution at every step to compute the descent direction. **WARNING**: This method is not
a robust solver for nonlinear least squares problems. The computed delta step might not
be the correct descent direction!

## Example usage

Expand Down

0 comments on commit f46984a

Please sign in to comment.