comparison scripts/sparse/bicgstab.m @ 23083:e9a0469dedd9 stable

maint: strip extra trailing newlines from files.
author John W. Eaton <jwe@octave.org>
date Fri, 20 Jan 2017 12:19:08 -0500
parents bac0d6f07a3e
children ef4d915df748 3ac9f9ecfae5
comparison
equal deleted inserted replaced
23082:e8d64dce0afd 23083:e9a0469dedd9
245 %!test 245 %!test
246 %! A = [1 + 1i, 1 + 1i; 2 - 1i, 2 + 1i]; 246 %! A = [1 + 1i, 1 + 1i; 2 - 1i, 2 + 1i];
247 %! b = A * [1; 1]; 247 %! b = A * [1; 1];
248 %! [x, flag, relres, iter, resvec] = bicgstab (A, b); 248 %! [x, flag, relres, iter, resvec] = bicgstab (A, b);
249 %! assert (x, [1; 1], 1e-6); 249 %! assert (x, [1; 1], 1e-6);
250