Usage example for QR_Givens
related to Exercise 2.8
CROSS-REFERENCE INFORMATION
This function calls:
QR_Givens Computes the QR factorization of A via Givens rotations
This function is called by:
SOURCE CODE
0001 % Usage example for QR_Givens
0002 % related to Exercise 2.8
0003
0004 A = [3 6 -1;
0005 -6 -6 1;
0006 2 1 -1];
0007
0008 [ Q, R ] = QR_Givens( A )