| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 
 | function test8
%TEST8 test cs_cholsol, cs_lusol
%
% Example:
%   test8
% See also: testall
% Copyright 2006-2012, Timothy A. Davis, http://www.suitesparse.com
index = ssget ;
[ignore f] = sort (max (index.nrows, index.ncols)) ;
f = f (1:100) ;
% f = f(1)
for i = f
    Prob = ssget (i) ;
    disp (Prob) ;
    A = Prob.A ;
    [m n] = size (A) ;
    if (m ~= n)
        continue
    end
    for cmplex = 0:double(~ispc)
        if (cmplex)
            A = A + 0.1i * (sprand (tril (A,-1) + triu (A,1))) ;
        end
        spd = 0 ;
        if (m == n)
            if (nnz (A-A') == 0)
                try
                    p = amd (A) ;
                catch
                    p = symamd (A) ;
                end
                [R,p] = chol (A (p,p)) ;
                spd = (p == 0) ;
            end
        end
        if (spd)
            C = A ;
        else
            C = A*A' + n*speye (n) ;
            try
                p = amd (C) ;
            catch
                p = symamd (C) ;
            end
            try
                R = chol (C (p,p)) ;                                        %#ok
            catch
                continue
            end
        end
        b = rand (n,1) ;
        x1 = C\b ;
        x2 = cs_cholsol (C,b) ;
        r1 = norm (C*x1-b,1) / norm (C,1) ;
        r2 = norm (C*x2-b,1) / norm (C,1) ;
        err = abs (r1-r2) ;
        fprintf ('err %g\n', err) ;
        if (err > 1e-10)
            error ('!') ;
        end
        x2 = cs_lusol (C,b, 1, 0.001) ;
        r2 = norm (C*x2-b,1) / norm (C,1) ;
        err = abs (r1-r2) ;
        fprintf ('err %g (lu with amd(A+A'')\n', err) ;
        if (err > 1e-10)
            error ('!') ;
        end
        if (m ~= n)
            continue ;
        end
        x1 = A\b ;
        r1 = norm (A*x1-b,1) / norm (A,1) ;
        if (r1 < 1e-6)
            x2 = cs_lusol (A,b) ;
            r2 = norm (A*x2-b,1) / norm (A,1) ;
            fprintf ('lu resid %g %g\n', r1, r2) ;
        end
    end
end
 |