Skip to content

Commit 63b4a85

Browse files
committed
updated function header
1 parent 11db8cb commit 63b4a85

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

EXAMPLES.mlx

933 Bytes
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ Fixed-point iteration for finding the fixed point of a univariate, scalar-valued
2727
## Examples and Additional Documentation
2828

2929
- See "EXAMPLES.mlx" or the "Examples" tab on the File Exchange page for examples.
30-
- See ["Root_Finding_Methods.pdf"](https://tamaskis.github.io/documentation/Root_Finding_Methods.pdf) (also included with download) for the technical documentation.
30+
- See ["Root_Finding_Methods.pdf"](https://tamaskis.github.io/files/Root_Finding_Methods.pdf) (also included with download) for the technical documentation.

Root_Finding_Methods.pdf

-971 Bytes
Binary file not shown.

fixed_point_iteration.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
% [c,k,c_all] = fixed_point_iteration(__)
1010
%
1111
% Copyright © 2021 Tamas Kis
12-
% Last Update: 2022-04-20
12+
% Last Update: 2022-07-06
1313
% Website: https://tamaskis.github.io
1414
% Contact: tamas.a.kis@outlook.com
1515
%
1616
% TECHNICAL DOCUMENTATION:
17-
% https://tamaskis.github.io/documentation/Root_Finding_Methods.pdf
17+
% https://tamaskis.github.io/files/Root_Finding_Methods.pdf
1818
%
1919
%--------------------------------------------------------------------------
2020
%
@@ -24,7 +24,7 @@
2424
% f - (1×1 function_handle) univariate, scalar-valued function,
2525
% f(x) (f : ℝ → ℝ)
2626
% x0 - (1×1 double) initial guess for fixed point
27-
% opts - (1×1 struct) (OPTIONAL) solver options
27+
% opts - (OPTIONAL) (1×1 struct) solver options
2828
% • k_max - (1×1 double) maximimum number of iterations
2929
% (defaults to 200)
3030
% • return_all - (1×1 logical) returns estimates at all iterations if

0 commit comments

Comments
 (0)