NAG Library Function Document
nag_dspgst (f08tec)
1 Purpose
nag_dspgst (f08tec) reduces a real symmetric-definite generalized eigenproblem
,
or
to the standard form
, where
is a real symmetric matrix and
has been factorized by
nag_dpptrf (f07gdc), using packed storage.
2 Specification
#include <nag.h> |
#include <nagf08.h> |
void |
nag_dspgst (Nag_OrderType order,
Nag_ComputeType comp_type,
Nag_UploType uplo,
Integer n,
double ap[],
const double bp[],
NagError *fail) |
|
3 Description
To reduce the real symmetric-definite generalized eigenproblem
,
or
to the standard form
using packed storage, nag_dspgst (f08tec) must be preceded by a call to
nag_dpptrf (f07gdc) which computes the Cholesky factorization of
;
must be positive definite.
The different problem types are specified by the argument
comp_type, as indicated in the table below. The table shows how
is computed by the function, and also how the eigenvectors
of the original problem can be recovered from the eigenvectors of the standard form.
comp_type |
Problem |
uplo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
5 Arguments
- 1:
– Nag_OrderTypeInput
-
On entry: the
order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by
. See
Section 3.2.1.3 in the Essential Introduction for a more detailed explanation of the use of this argument.
Constraint:
or .
- 2:
– Nag_ComputeTypeInput
-
On entry: indicates how the standard form is computed.
-
- if , ;
- if , .
- or
-
- if , ;
- if , .
Constraint:
, or .
- 3:
– Nag_UploTypeInput
-
On entry: indicates whether the upper or lower triangular part of
is stored and how
has been factorized.
- The upper triangular part of is stored and .
- The lower triangular part of is stored and .
Constraint:
or .
- 4:
– IntegerInput
-
On entry: , the order of the matrices and .
Constraint:
.
- 5:
– doubleInput/Output
-
Note: the dimension,
dim, of the array
ap
must be at least
.
On entry: the upper or lower triangle of the
by
symmetric matrix
, packed by rows or columns.
The storage of elements
depends on the
order and
uplo arguments as follows:
- if and ,
is stored in , for ; - if and ,
is stored in , for ; - if and ,
is stored in , for ; - if and ,
is stored in , for .
On exit: the upper or lower triangle of
ap is overwritten by the corresponding upper or lower triangle of
as specified by
comp_type and
uplo, using the same packed storage format as described above.
- 6:
– const doubleInput
-
Note: the dimension,
dim, of the array
bp
must be at least
.
On entry: the Cholesky factor of
as specified by
uplo and returned by
nag_dpptrf (f07gdc).
- 7:
– NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
6 Error Indicators and Warnings
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
See
Section 3.2.1.2 in the Essential Introduction for further information.
- NE_BAD_PARAM
-
On entry, argument had an illegal value.
- NE_INT
-
On entry, .
Constraint: .
- NE_INTERNAL_ERROR
-
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact
NAG for assistance.
An unexpected error has been triggered by this function. Please contact
NAG.
See
Section 3.6.6 in the Essential Introduction for further information.
- NE_NO_LICENCE
-
Your licence key may have expired or may not have been installed correctly.
See
Section 3.6.5 in the Essential Introduction for further information.
7 Accuracy
Forming the reduced matrix is a stable procedure. However it involves implicit multiplication by if () or (if or ). When nag_dspgst (f08tec) is used as a step in the computation of eigenvalues and eigenvectors of the original problem, there may be a significant loss of accuracy if is ill-conditioned with respect to inversion.
8 Parallelism and Performance
nag_dspgst (f08tec) is not threaded by NAG in any implementation.
nag_dspgst (f08tec) makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The total number of floating-point operations is approximately .
The complex analogue of this function is
nag_zhpgst (f08tsc).
10 Example
This example computes all the eigenvalues of
, where
using packed storage. Here
is symmetric positive definite and must first be factorized by
nag_dpptrf (f07gdc). The program calls nag_dspgst (f08tec) to reduce the problem to the standard form
; then
nag_dsptrd (f08gec) to reduce
to tridiagonal form, and
nag_dsterf (f08jfc) to compute the eigenvalues.
10.1 Program Text
Program Text (f08tece.c)
10.2 Program Data
Program Data (f08tece.d)
10.3 Program Results
Program Results (f08tece.r)