Program f08tsfe
! F08TSF Example Program Text
! Mark 28.3 Release. NAG Copyright 2022.
! .. Use Statements ..
Use nag_library, Only: dsterf, nag_wp, zhpgst, zhptrd, zpptrf
! .. Implicit None Statement ..
Implicit None
! .. Parameters ..
Integer, Parameter :: nin = 5, nout = 6
! .. Local Scalars ..
Integer :: i, info, j, n
Character (1) :: uplo
! .. Local Arrays ..
Complex (Kind=nag_wp), Allocatable :: ap(:), bp(:), tau(:)
Real (Kind=nag_wp), Allocatable :: d(:), e(:)
! .. Executable Statements ..
Write (nout,*) 'F08TSF Example Program Results'
! Skip heading in data file
Read (nin,*)
Read (nin,*) n
Allocate (ap(n*(n+1)/2),bp(n*(n+1)/2),tau(n),d(n),e(n-1))
! Read A and B from data file
Read (nin,*) uplo
If (uplo=='U') Then
Read (nin,*)((ap(i+j*(j-1)/2),j=i,n),i=1,n)
Read (nin,*)((bp(i+j*(j-1)/2),j=i,n),i=1,n)
Else If (uplo=='L') Then
Read (nin,*)((ap(i+(2*n-j)*(j-1)/2),j=1,i),i=1,n)
Read (nin,*)((bp(i+(2*n-j)*(j-1)/2),j=1,i),i=1,n)
End If
! Compute the Cholesky factorization of B
! The NAG name equivalent of zpptrf is f07grf
Call zpptrf(uplo,n,bp,info)
Write (nout,*)
If (info>0) Then
Write (nout,*) 'B is not positive definite.'
Else
! Reduce the problem to standard form C*y = lambda*y, storing
! the result in A
! The NAG name equivalent of zhpgst is f08tsf
Call zhpgst(1,uplo,n,ap,bp,info)
! Reduce C to tridiagonal form T = (Q**H)*C*Q
! The NAG name equivalent of zhptrd is f08gsf
Call zhptrd(uplo,n,ap,d,e,tau,info)
! Calculate the eigenvalues of T (same as C)
! The NAG name equivalent of dsterf is f08jff
Call dsterf(n,d,e,info)
If (info>0) Then
Write (nout,*) 'Failure to converge.'
Else
! Print eigenvalues
Write (nout,*) 'Eigenvalues'
Write (nout,99999) d(1:n)
End If
End If
99999 Format (3X,(9F8.4))
End Program f08tsfe