comparison scripts/sparse/bicgstab.m @ 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 0a5b15007766
children 34097a2f1f60
comparison
equal deleted inserted replaced
29372:fd1c45b62ba9 29373:23a5daf1e809
222 if (nargout < 2) 222 if (nargout < 2)
223 printf("The right hand side vector is all zero so bicgstab \n") 223 printf("The right hand side vector is all zero so bicgstab \n")
224 printf ("returned an all zero solution without iterating.\n") 224 printf ("returned an all zero solution without iterating.\n")
225 endif 225 endif
226 x_min = zeros (numel (b), 1); 226 x_min = zeros (numel (b), 1);
227 iter_ min = 0; 227 iter_min = 0;
228 flag = 0; 228 flag = 0;
229 resvec = 0; 229 resvec = 0;
230 relres = 0; 230 relres = 0;
231 return 231 return
232 endif 232 endif