I
am not sure if that is related problem, but if I run
"test svds" in octave gui it hangs with 100% CPU running.
Chtr-C does not kill it, requires kill -9 instead.
Doing the same in --no-gui produces usual:
octave:1> test svds
warning: returning fewer singular values than requested
warning: try increasing the value of sigma
***** testif HAVE_ARPACK, HAVE_UMFPACK
[u2,s2,v2,flag] = svds (A,k,0,opts);
s2 = diag (s2);
assert (flag, !1);
tol = 10 * eps() * norm(s2, 1);
assert (s2, s(k:-1:1), tol);
!!!!! test failed
ASSERT errors for: assert (s2,s (k:-1:1),tol)
Location | Observed | Expected | Reason
. O(6x1) E(7x1) Dimensions don't match
mitri.
--