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
|
function test27
%TEST27 test cs_qr, cs_utsolve, cs_qrsol
%
% Example:
% test27
% See also: testall
% CXSparse, Copyright (c) 2006-2022, Timothy A. Davis. All Rights Reserved.
% SPDX-License-Identifier: LGPL-2.1+
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)
|