File: test27.m

package info (click to toggle)
suitesparse 1%3A5.8.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 152,716 kB
  • sloc: ansic: 774,385; cpp: 24,213; makefile: 6,310; fortran: 1,927; java: 1,826; csh: 1,686; ruby: 725; sh: 535; perl: 225; python: 209; sed: 164; awk: 60
file content (44 lines) | stat: -rw-r--r-- 610 bytes parent folder | download | duplicates (9)
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
function test27
%TEST27 test cs_qr, cs_utsolve, cs_qrsol
%
% Example:
%   test27
% See also: testall

% Copyright 2006-2012, Timothy A. Davis, http://www.suitesparse.com

clear functions
rand ('state', 0) ;

Prob = ssget ('HB/ibm32') ;
A = Prob.A ;
A = A (1:10,:) ;
[m n] = size (A) ;

[V,Beta,p,R,q] = cs_qr (A') ;

b = rand (m,1) ;

Rm = R (1:m,1:m) ;

bq = b (q) ;
rtbq = Rm' \ bq ;

rt2 = cs_utsolve (Rm, bq) ;

norm (rtbq - rt2)

x = [rt2 ; zeros(n-m,1)] ;

for k = m:-1:1
    x = x - V(:,k) * (Beta (k) * (V (:,k)' * x)) ;
end

x (p) = x ;

norm (A*x-b)

x2 = cs_qrsol (A,b) ;

norm (A*x2-b)
norm (x-x2)