File: test8.m

package info (click to toggle)
suitesparse 1%3A3.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 40,788 kB
  • sloc: ansic: 106,134; cpp: 13,129; makefile: 6,679; fortran: 4,591; csh: 763; ruby: 603; perl: 236; sed: 164; awk: 29; sh: 8
file content (85 lines) | stat: -rw-r--r-- 1,693 bytes parent folder | download | duplicates (2)
1
2
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
%TEST8 test cs_cholsol, cs_lusol
%
% Example:
%   test8
% See also: testall

%   Copyright 2006-2007, Timothy A. Davis.
%   http://www.cise.ufl.edu/research/sparse

index = UFget ;
[ignore f] = sort (max (index.nrows, index.ncols)) ;
f = f (1:100) ;

% f = f(1)

for i = f
    Prob = UFget (i) ;
    disp (Prob) ;
    A = Prob.A ;
    [m n] = size (A) ;
    if (~isreal (A) | m ~= n)                                               %#ok
        continue
    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)) ;
        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