]> gitweb.michael.orlitzky.com - octave.git/blobdiff - fixed_point_method.m
Add diffusion_matrix_sparse() and its tests.
[octave.git] / fixed_point_method.m
index c28a66e7e88d46e91e971234055b84d454a829d9..eb3b61c27729331e7b76828625f3874a8c44f04f 100644 (file)
@@ -13,8 +13,8 @@ function [fixed_point, iterations] = fixed_point_method(g, epsilon, x0)
   ##
   ##   * ``fixed_point`` - The fixed point that we found.
   ##
-  ##   * ``iterations`` - The number of bisections that we performed
-  ##   during the search.
+  ##   * ``iterations`` - The number of iterations that we performed
+  ##     during the search.
   ##
 
   iterations = 0;