From 84e3ac1d901fa19fa8cc424066bbf14ed4f48a97 Mon Sep 17 00:00:00 2001 From: tamaskis Date: Sun, 2 Jan 2022 19:43:28 -0500 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 320a449..518dfc9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# `fsolve_newton` +# `fsolve_newton` [![View Newton’s Method for Systems of Equations (fsolve_newton) on File Exchange](https://www.mathworks.com/matlabcentral/images/matlab-file-exchange.svg)](https://www.mathworks.com/matlabcentral/fileexchange/104415-newton-s-method-for-systems-of-equations-fsolve_newton) Solves a system of nonlinear equations using Newton's method. @@ -18,7 +18,7 @@ Solves a system of nonlinear equations using Newton's method. `x = fsolve_newton(f,x0,opts)` does the same as the syntax above, but allows for the specification of optional solver parameters. `opts` is a structure that has the following fields: - `jacobian` → function handle (defined as a function of `x`) for the Jacobian of `f` () - `imax` → maximum number of iterations (defaults to ) - - `return_all` → all intermediate root estimates are returned if set to `true`; otherwise, only the converged root is returned (defaults to `false`) + - `return_all` → all intermediate solution estimates are returned if set to `true`; otherwise, only the converged solution is returned (defaults to `false`) - `TOL` → tolerance (defaults to ) - `warnings` → `true` if any warnings should be displayed, `false` if not (defaults to `true`) @@ -26,4 +26,4 @@ Solves a system of nonlinear equations using Newton's method. ## Examples and Additional Documentation - See "EXAMPLES.mlx" or the "Examples" tab on the File Exchange page for examples. - - See ["Newton_s_Method.pdf"](https://tamaskis.github.io/documentation/Newton_s_Method.pdf) (also included with download) for the technical documentation. \ No newline at end of file + - See ["Newton_s_Method.pdf"](https://tamaskis.github.io/documentation/Newton_s_Method.pdf) (also included with download) for the technical documentation.