# HG changeset patch # User John W. Eaton # Date 1235425060 18000 # Node ID 492801cd65eb3e31257ebd8b63bfd627f142935b # Parent 5a6db6bd1a02bf286ebb9ea97c086cc208ae846a Fix small error in previous commit, which was two changes that should not have been combined; the first change was to improve breakpoints in debugging and was not mentioned in the commit message. Ugh. diff -r 5a6db6bd1a02 -r 492801cd65eb scripts/sparse/svds.m --- a/scripts/sparse/svds.m Mon Feb 23 16:29:20 2009 -0500 +++ b/scripts/sparse/svds.m Mon Feb 23 16:37:40 2009 -0500 @@ -212,6 +212,7 @@ %! s = s(idx); %! u = u(:,idx); %! v = v(:,idx); +%! randn('state',42) %!testif HAVE_ARPACK %! [u2,s2,v2,flag] = svds(a,k); %! s2 = diag(s2);