comparison scripts/sparse/bicgstab.m @ 21308:c53bfd6d8e08

maint: Use American spelling for "behavior". * Array.cc, randmtzig.c, file-ops.cc, oct-inttypes.h, cross.m, bicgstab.m, kurtosis.m, skewness.m, build-sparse-tests.sh, __ilu__.cc, __magick_read__.cc: Use American spelling for "behavior".
author Rik <rik@octave.org>
date Fri, 19 Feb 2016 09:40:59 -0800
parents 3be6a07e8bad
children 3d60ed163b70
comparison
equal deleted inserted replaced
21307:61c96c37ce69 21308:c53bfd6d8e08
135 rr = res; 135 rr = res;
136 136
137 ## Vector of the residual norms for each iteration. 137 ## Vector of the residual norms for each iteration.
138 resvec = norm (res) / norm_b; 138 resvec = norm (res) / norm_b;
139 139
140 ## Default behaviour we don't reach tolerance tol within maxit iterations. 140 ## Default behavior we don't reach tolerance tol within maxit iterations.
141 flag = 1; 141 flag = 1;
142 142
143 for iter = 1:maxit 143 for iter = 1:maxit
144 rho_1 = rr' * res; 144 rho_1 = rr' * res;
145 145