PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dopgtr (f08gf)
Purpose
nag_lapack_dopgtr (f08gf) generates the real orthogonal matrix
, which was determined by
nag_lapack_dsptrd (f08ge) when reducing a symmetric matrix to tridiagonal form.
Syntax
Description
nag_lapack_dopgtr (f08gf) is intended to be used after a call to
nag_lapack_dsptrd (f08ge), which reduces a real symmetric matrix
to symmetric tridiagonal form
by an orthogonal similarity transformation:
.
nag_lapack_dsptrd (f08ge) represents the orthogonal matrix
as a product of
elementary reflectors.
This function may be used to generate explicitly as a square matrix.
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
This
must be the same argument
uplo as supplied to
nag_lapack_dsptrd (f08ge).
Constraint:
or .
- 2:
– int64int32nag_int scalar
-
, the order of the matrix .
Constraint:
.
- 3:
– double array
-
The dimension of the array
ap
must be at least
Details of the vectors which define the elementary reflectors, as returned by
nag_lapack_dsptrd (f08ge).
- 4:
– double array
-
The dimension of the array
tau
must be at least
Further details of the elementary reflectors, as returned by
nag_lapack_dsptrd (f08ge).
Optional Input Parameters
None.
Output Parameters
- 1:
– double array
-
The first dimension of the array
q will be
.
The second dimension of the array
q will be
.
The by orthogonal matrix .
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , parameter had an illegal value on entry. The parameters are numbered as follows:
1:
uplo, 2:
n, 3:
ap, 4:
tau, 5:
q, 6:
ldq, 7:
work, 8:
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
differs from an exactly orthogonal matrix by a matrix
such that
where
is the
machine precision.
Further Comments
The total number of floating-point operations is approximately .
The complex analogue of this function is
nag_lapack_zupgtr (f08gt).
Example
This example computes all the eigenvalues and eigenvectors of the matrix
, where
using packed storage. Here
is symmetric and must first be reduced to tridiagonal form by
nag_lapack_dsptrd (f08ge). The program then calls
nag_lapack_dopgtr (f08gf) to form
, and passes this matrix to
nag_lapack_dsteqr (f08je) which computes the eigenvalues and eigenvectors of
.
Open in the MATLAB editor:
f08gf_example
function f08gf_example
fprintf('f08gf example results\n\n');
uplo = 'L';
n = int64(4);
ap = [2.07; 3.87; 4.2; -1.15;
-0.21; 1.87; 0.63;
1.15; 2.06;
-1.81];
[apf, d, e, tau, info] = f08ge( ...
uplo, n, ap);
[q, info] = f08gf( ...
uplo, n, apf, tau);
compz = 'Vectors';
[w, ~, z, info] = f08je( ...
compz, d, e, 'z', q);
disp('Eigenvalues');
disp(w');
for j = 1:n
[~,k] = max(abs(z(:,j)));
if z(k,j) < 0;
z(:,j) = -z(:,j);
end
end
disp('Eigenvectors');
disp(z);
f08gf example results
Eigenvalues
-5.0034 -1.9987 0.2013 8.0008
Eigenvectors
0.5658 -0.2328 -0.3965 0.6845
-0.3478 0.7994 -0.1780 0.4564
-0.4740 -0.4087 0.5381 0.5645
0.5781 0.3737 0.7221 0.0676
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015