Skip to content

Commit 8f0412a

Browse files
committed
Updated documentation and fixed typos
1 parent 18f41df commit 8f0412a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

EXAMPLES.mlx

-30.4 KB
Binary file not shown.

Fixed_Point_Iteration.pdf

-73 Bytes
Binary file not shown.

fixed_point_iteration.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
% c = fixed_point_iteration(f,x0,opts)
88
%
99
% Copyright © 2021 Tamas Kis
10-
% Last Update: 2021-08-28
10+
% Last Update: 2021-11-22
1111
% Website: https://tamaskis.github.io
1212
1313
%
@@ -74,7 +74,7 @@
7474
TOL = opts.TOL;
7575
end
7676

77-
% determines if warnings should be displayed (defaults to display)
77+
% determines if warnings should be displayed (defaults to true)
7878
if (nargin < 3) || isempty(opts) || ~isfield(opts,'warnings')
7979
warnings = true;
8080
else

0 commit comments

Comments
 (0)