1function test17
2%TEST17 test lchol on a few large matrices
3% Example:
4%   test17
5% See also cholmod_test
6
7% Copyright 2007, Timothy A. Davis, http://www.suitesparse.com
8
9fprintf ('=================================================================\n');
10fprintf ('test17: test lchol on a few large matrices\n') ;
11
12rand ('state',1) ;
13randn ('state',1) ;
14
15Prob = ssget (887)							%#ok
16A = Prob.A ;
17[L,s,p] = lchol (A) ;							%#ok
18norm (L,1)
19
20clear all
21
22Prob = ssget (936)							%#ok
23A = Prob.A ;
24[L,s,p] = lchol (A) ;							%#ok
25norm (L,1)								%#ok
26
27clear all
28
29Prob = ssget (887)							%#ok
30A = Prob.A ;
31[L,s,p] = lchol (A) ;							%#ok
32norm (L,1)								%#ok
33