changeset 29373:23a5daf1e809 stable

bicgstab.m, cgs.m: Fix typo in "iter_min" variable name (bug #60071). * bicgstab.m, cgs.m: Fix typo in "iter_min" variable name.
author Rik <rik@octave.org>
date Wed, 17 Feb 2021 13:14:30 -0800
parents fd1c45b62ba9
children 34097a2f1f60 5cfdf97c5350
files scripts/sparse/bicgstab.m scripts/sparse/cgs.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/sparse/bicgstab.m	Sun Feb 14 22:48:19 2021 +0100
+++ b/scripts/sparse/bicgstab.m	Wed Feb 17 13:14:30 2021 -0800
@@ -224,7 +224,7 @@
       printf ("returned an all zero solution without iterating.\n")
     endif
     x_min = zeros (numel (b), 1);
-    iter_ min = 0;
+    iter_min = 0;
     flag = 0;
     resvec = 0;
     relres = 0;
--- a/scripts/sparse/cgs.m	Sun Feb 14 22:48:19 2021 +0100
+++ b/scripts/sparse/cgs.m	Wed Feb 17 13:14:30 2021 -0800
@@ -208,7 +208,7 @@
       printf ("returned an all zero solution without iterating.\n")
     endif
     x_min = zeros (numel (b), 1);
-    iter_ min = 0;
+    iter_min = 0;
     flag = 0;
     resvec = 0;
     relres = 0;