# HG changeset patch # User A.R. Burgers # Date 1682708437 25200 # Node ID c9e496db7951dffe69e453b8c03aa070edd9be40 # Parent 5f5d8edbeb4f8df73a203f98e1e041da2716f5a3 Correct typo in cset 3b9305e62bb7. * mk-sparse-tst.sh: Correct spelling of "instead". diff -r 5f5d8edbeb4f -r c9e496db7951 test/mk-sparse-tst.sh --- a/test/mk-sparse-tst.sh Thu Apr 27 13:26:53 2023 -0400 +++ b/test/mk-sparse-tst.sh Fri Apr 28 12:00:37 2023 -0700 @@ -655,7 +655,7 @@ %!testif HAVE_UMFPACK %! ## Yes, we want to test lu with fewer than 4 output arguments %! ## and sparse input while also avoiding the warning. So use -%! ## warning ("off", ...) insetead of additional outputs. +%! ## warning ("off", ...) instead of additional outputs. %! warning ("off", "Octave:lu:sparse_input", "local"); %! [l,u] = lu (sparse ([1,1;1,1])); %! assert (l*u, [1,1;1,1], 10*eps); @@ -663,7 +663,7 @@ %!testif HAVE_UMFPACK %! ## Yes, we want to test lu with fewer than 4 output arguments %! ## and sparse input while also avoiding the warning. So use -%! ## warning ("off", ...) insetead of additional outputs. +%! ## warning ("off", ...) instead of additional outputs. %! warning ("off", "Octave:lu:sparse_input", "local"); %! [l,u] = lu (sparse ([1,1;1,1+i])); %! assert (l, sparse ([1,2,2],[1,1,2],1), 10*eps); @@ -672,7 +672,7 @@ %!testif HAVE_UMFPACK # permuted LU %! ## Yes, we want to test lu with fewer than 4 output arguments %! ## and sparse input while also avoiding the warning. So use -%! ## warning ("off", ...) insetead of additional outputs. +%! ## warning ("off", ...) instead of additional outputs. %! warning ("off", "Octave:lu:sparse_input", "local"); %! [L,U] = lu (bs); %! assert (L*U, bs, 1e-10); @@ -680,7 +680,7 @@ %!testif HAVE_UMFPACK # simple LU + row permutations %! ## Yes, we want to test lu with fewer than 4 output arguments %! ## and sparse input while also avoiding the warning. So use -%! ## warning ("off", ...) insetead of additional outputs. +%! ## warning ("off", ...) instead of additional outputs. %! warning ("off", "Octave:lu:sparse_input", "local"); %! [L,U,P] = lu (bs); %! assert (P'*L*U, bs, 1e-10); @@ -784,7 +784,7 @@ %!testif HAVE_UMFPACK # permuted LU %! ## Yes, we want to test lu with fewer than 4 output arguments %! ## and sparse input while also avoiding the warning. So use -%! ## warning ("off", ...) insetead of additional outputs. +%! ## warning ("off", ...) instead of additional outputs. %! warning ("off", "Octave:lu:sparse_input", "local"); %! [L,U] = lu (bs); %! assert (L*U, bs, 1e-10); @@ -792,7 +792,7 @@ %!testif HAVE_UMFPACK # simple LU + row permutations %! ## Yes, we want to test lu with fewer than 4 output arguments %! ## and sparse input while also avoiding the warning. So use -%! ## warning ("off", ...) insetead of additional outputs. +%! ## warning ("off", ...) instead of additional outputs. %! warning ("off", "Octave:lu:sparse_input", "local"); %! [L,U,P] = lu (bs); %! assert (P'*L*U, bs, 1e-10);