hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_lapack_dorglq (f08aj)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_lapack_dorglq (f08aj) generates all or part of the real orthogonal matrix Q from an LQ factorization computed by nag_lapack_dgelqf (f08ah).

Syntax

[a, info] = f08aj(a, tau, 'm', m, 'n', n, 'k', k)
[a, info] = nag_lapack_dorglq(a, tau, 'm', m, 'n', n, 'k', k)

Description

nag_lapack_dorglq (f08aj) is intended to be used after a call to nag_lapack_dgelqf (f08ah), which performs an LQ factorization of a real matrix A. The orthogonal matrix Q is represented as a product of elementary reflectors.
This function may be used to generate Q explicitly as a square matrix, or to form only its leading rows.
Usually Q is determined from the LQ factorization of a p by n matrix A with pn. The whole of Q may be computed by:
[a, info] = f08aj(a, tau);
(note that the array a must have at least n rows) or its leading p rows by:
[a, info] = f08aj(a(1:p,:), tau);
The rows of Q returned by the last call form an orthonormal basis for the space spanned by the rows of A; thus nag_lapack_dgelqf (f08ah) followed by nag_lapack_dorglq (f08aj) can be used to orthogonalize the rows of A.
The information returned by the LQ factorization functions also yields the LQ factorization of the leading k rows of A, where k<p. The orthogonal matrix arising from this factorization can be computed by:
[a, info] = f08aj(a, tau);
or its leading k rows by:
[a, info] = f08aj(a(1:k,:), tau);

References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

Parameters

Compulsory Input Parameters

1:     alda: – double array
The first dimension of the array a must be at least max1,m.
The second dimension of the array a must be at least max1,n.
Details of the vectors which define the elementary reflectors, as returned by nag_lapack_dgelqf (f08ah).
2:     tau: – double array
The dimension of the array tau must be at least max1,k
Further details of the elementary reflectors, as returned by nag_lapack_dgelqf (f08ah).

Optional Input Parameters

1:     m int64int32nag_int scalar
Default: the first dimension of the array a.
m, the number of rows of the matrix Q.
Constraint: m0.
2:     n int64int32nag_int scalar
Default: the second dimension of the array a.
n, the number of columns of the matrix Q.
Constraint: nm.
3:     k int64int32nag_int scalar
Default: the dimension of the array tau.
k, the number of elementary reflectors whose product defines the matrix Q.
Constraint: mk0.

Output Parameters

1:     alda: – double array
The first dimension of the array a will be max1,m.
The second dimension of the array a will be max1,n.
The m by n matrix Q.
2:     info int64int32nag_int scalar
info=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

   info=-i
If info=-i, parameter i had an illegal value on entry. The parameters are numbered as follows:
1: m, 2: n, 3: k, 4: a, 5: lda, 6: tau, 7: work, 8: lwork, 9: info.
It is possible that info refers to a parameter that is omitted from the MATLAB interface. This usually indicates that an error in one of the other input parameters has caused an incorrect value to be inferred.

Accuracy

The computed matrix Q differs from an exactly orthogonal matrix by a matrix E such that
E2 = Oε ,  
where ε is the machine precision.

Further Comments

The total number of floating-point operations is approximately 4mnk-2 m+n k2 + 43 k3 ; when m=k, the number is approximately 23 m2 3n-m .
The complex analogue of this function is nag_lapack_zunglq (f08aw).

Example

This example forms the leading 4 rows of the orthogonal matrix Q from the LQ factorization of the matrix A, where
A = -5.42 3.28 -3.68 0.27 2.06 0.46 -1.65 -3.40 -3.20 -1.03 -4.06 -0.01 -0.37 2.35 1.90 4.31 -1.76 1.13 -3.15 -0.11 1.99 -2.70 0.26 4.50 .  
The rows of Q form an orthonormal basis for the space spanned by the rows of A.
function f08aj_example


fprintf('f08aj example results\n\n');

a = [ -5.42   3.28  -3.68   0.27   2.06   0.46;
      -1.65  -3.40  -3.20  -1.03  -4.06  -0.01;
      -0.37   2.35   1.90   4.31  -1.76   1.13;
      -3.15  -0.11   1.99  -2.70   0.26   4.50];

% Compute the LQ Factorisation of A
[lq, tau, info] = f08ah(a);

% Generate Q
[q, info] = f08aj(lq, tau);

disp('Orthogonal factor Q');
disp(q);


f08aj example results

Orthogonal factor Q
   -0.7104    0.4299   -0.4824    0.0354    0.2700    0.0603
   -0.2412   -0.5323   -0.4845   -0.1595   -0.6311   -0.0027
    0.1287   -0.2619   -0.2108   -0.7447    0.5227   -0.2063
   -0.3403   -0.0921    0.4546   -0.3869   -0.0465    0.7191


PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015