Skip to content

Commit

Permalink
updated function header
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaskis committed Jul 6, 2022
1 parent d2e5886 commit c3bdcf8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified EXAMPLES.mlx
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Newton's method for finding the root of a differentiable, multivariate, vector-v
## Examples and Additional Documentation

- See "EXAMPLES.mlx" or the "Examples" tab on the File Exchange page for examples.
- See ["Root_Finding_Methods.pdf"](https://tamaskis.github.io/documentation/Root_Finding_Methods.pdf) (also included with download) for the technical documentation.
- See ["Root_Finding_Methods.pdf"](https://tamaskis.github.io/files/Root_Finding_Methods.pdf) (also included with download) for the technical documentation.
Binary file modified Root_Finding_Methods.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions newtons_method_n.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
% See also fsolve.
%
% Copyright © 2021 Tamas Kis
% Last Update: 2022-04-20
% Last Update: 2022-07-06
% Website: https://tamaskis.github.io
% Contact: tamas.a.kis@outlook.com
%
% TECHNICAL DOCUMENTATION:
% https://tamaskis.github.io/documentation/Root_Finding_Methods.pdf
% https://tamaskis.github.io/files/Root_Finding_Methods.pdf
%
%--------------------------------------------------------------------------
%
Expand All @@ -27,7 +27,7 @@
% f(x) (f : ℝⁿ → ℝⁿ)
% J - (1×1 function_handle) Jacobian of f(x) (J : ℝⁿ → ℝⁿˣⁿ)
% x0 - (n×1 double) initial guess for root
% opts - (1×1 struct) (OPTIONAL) solver options
% opts - (OPTIONAL) (1×1 struct) solver options
% • k_max - (1×1 double) maximimum number of iterations
% (defaults to 200)
% • return_all - (1×1 logical) returns estimates at all iterations if
Expand Down

0 comments on commit c3bdcf8

Please sign in to comment.