dstev (l) - Linux Manuals
dstev: computes all eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix A
Command to display dstev
manual in Linux: $ man l dstev
NAME
DSTEV - computes all eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix A
SYNOPSIS
- SUBROUTINE DSTEV(
-
JOBZ, N, D, E, Z, LDZ, WORK, INFO )
-
CHARACTER
JOBZ
-
INTEGER
INFO, LDZ, N
-
DOUBLE
PRECISION D( * ), E( * ), WORK( * ), Z( LDZ, * )
PURPOSE
DSTEV computes all eigenvalues and, optionally, eigenvectors of a
real symmetric tridiagonal matrix A.
ARGUMENTS
- JOBZ (input) CHARACTER*1
-
= aqNaq: Compute eigenvalues only;
= aqVaq: Compute eigenvalues and eigenvectors.
- N (input) INTEGER
-
The order of the matrix. N >= 0.
- D (input/output) DOUBLE PRECISION array, dimension (N)
-
On entry, the n diagonal elements of the tridiagonal matrix
A.
On exit, if INFO = 0, the eigenvalues in ascending order.
- E (input/output) DOUBLE PRECISION array, dimension (N-1)
-
On entry, the (n-1) subdiagonal elements of the tridiagonal
matrix A, stored in elements 1 to N-1 of E.
On exit, the contents of E are destroyed.
- Z (output) DOUBLE PRECISION array, dimension (LDZ, N)
-
If JOBZ = aqVaq, then if INFO = 0, Z contains the orthonormal
eigenvectors of the matrix A, with the i-th column of Z
holding the eigenvector associated with D(i).
If JOBZ = aqNaq, then Z is not referenced.
- LDZ (input) INTEGER
-
The leading dimension of the array Z. LDZ >= 1, and if
JOBZ = aqVaq, LDZ >= max(1,N).
- WORK (workspace) DOUBLE PRECISION array, dimension (max(1,2*N-2))
-
If JOBZ = aqNaq, WORK is not referenced.
- INFO (output) INTEGER
-
= 0: successful exit
< 0: if INFO = -i, the i-th argument had an illegal value
> 0: if INFO = i, the algorithm failed to converge; i
off-diagonal elements of E did not converge to zero.
Pages related to dstev
- dstev (3)
- dstevd (l) - computes all eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix
- dstevr (l) - computes selected eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix T
- dstevx (l) - computes selected eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix A
- dstebz (l) - computes the eigenvalues of a symmetric tridiagonal matrix T
- dstedc (l) - computes all eigenvalues and, optionally, eigenvectors of a symmetric tridiagonal matrix using the divide and conquer method
- dstegr (l) - computes selected eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix T
- dstein (l) - computes the eigenvectors of a real symmetric tridiagonal matrix T corresponding to specified eigenvalues, using inverse iteration
- dstemr (l) - computes selected eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix T
- dsteqr (l) - computes all eigenvalues and, optionally, eigenvectors of a symmetric tridiagonal matrix using the implicit QL or QR method
- dsterf (l) - computes all eigenvalues of a symmetric tridiagonal matrix using the Pal-Walker-Kahan variant of the QL or QR algorithm