Loading [MathJax]/jax/input/TeX/config.js
fortran-lapack
All Classes Namespaces Files Functions Variables Pages
la_lapack::syevd Interface Reference

SYEVD: computes all eigenvalues and, optionally, eigenvectors of a real symmetric matrix A. If eigenvectors are desired, it uses a divide and conquer algorithm. The divide and conquer algorithm makes very mild assumptions about floating point arithmetic. It will work on machines with a guard digit in add/subtract, or on those binary machines without guard digits which subtract like the Cray X-MP, Cray Y-MP, Cray C-90, or Cray-2. It could conceivably fail on hexadecimal or decimal machines without guard digits, but we know of none. Because of large use of BLAS of level 3, SYEVD needs N**2 more workspace than DSYEVX. More...

Public Member Functions

subroutine dsyevd (jobz, uplo, n, a, lda, w, work, lwork, iwork, liwork, info)
 
 la_dsyevd
 
 la_qsyevd
 
subroutine ssyevd (jobz, uplo, n, a, lda, w, work, lwork, iwork, liwork, info)
 
 la_ssyevd
 

Detailed Description

SYEVD: computes all eigenvalues and, optionally, eigenvectors of a real symmetric matrix A. If eigenvectors are desired, it uses a divide and conquer algorithm. The divide and conquer algorithm makes very mild assumptions about floating point arithmetic. It will work on machines with a guard digit in add/subtract, or on those binary machines without guard digits which subtract like the Cray X-MP, Cray Y-MP, Cray C-90, or Cray-2. It could conceivably fail on hexadecimal or decimal machines without guard digits, but we know of none. Because of large use of BLAS of level 3, SYEVD needs N**2 more workspace than DSYEVX.

Member Function/Subroutine Documentation

◆ dsyevd()

subroutine la_lapack::syevd::dsyevd ( character, intent(in) jobz,
character, intent(in) uplo,
integer(ilp), intent(in) n,
real(dp), dimension(lda,*), intent(inout) a,
integer(ilp), intent(in) lda,
real(dp), dimension(*), intent(out) w,
real(dp), dimension(*), intent(out) work,
integer(ilp), intent(in) lwork,
integer(ilp), dimension(*), intent(out) iwork,
integer(ilp), intent(in) liwork,
integer(ilp), intent(out) info )

◆ la_dsyevd()

la_lapack::syevd::la_dsyevd

◆ la_qsyevd()

la_lapack::syevd::la_qsyevd

◆ la_ssyevd()

la_lapack::syevd::la_ssyevd

◆ ssyevd()

subroutine la_lapack::syevd::ssyevd ( character, intent(in) jobz,
character, intent(in) uplo,
integer(ilp), intent(in) n,
real(sp), dimension(lda,*), intent(inout) a,
integer(ilp), intent(in) lda,
real(sp), dimension(*), intent(out) w,
real(sp), dimension(*), intent(out) work,
integer(ilp), intent(in) lwork,
integer(ilp), dimension(*), intent(out) iwork,
integer(ilp), intent(in) liwork,
integer(ilp), intent(out) info )

The documentation for this interface was generated from the following file: