Program dormtr_example
! DORMTR Example Program Text
! Copyright 2017, Numerical Algorithms Group Ltd. http://www.nag.com
! .. Use Statements ..
Use lapack_example_aux, Only: nagf_file_print_matrix_real_gen
Use lapack_interfaces, Only: dormtr, dstebz, dstein, dsytrd
Use lapack_precision, Only: dp
! .. Implicit None Statement ..
Implicit None
! .. Parameters ..
Real (Kind=dp), Parameter :: zero = 0.0E0_dp
Integer, Parameter :: nin = 5, nout = 6
! .. Local Scalars ..
Real (Kind=dp) :: vl, vu
Integer :: i, ifail, info, lda, ldc, lwork, m, n, nsplit
Character (1) :: uplo
! .. Local Arrays ..
Real (Kind=dp), Allocatable :: a(:, :), c(:, :), d(:), e(:), tau(:), &
w(:), work(:)
Integer, Allocatable :: iblock(:), ifailv(:), isplit(:), iwork(:)
! .. Executable Statements ..
Write (nout, *) 'DORMTR Example Program Results'
! Skip heading in data file
Read (nin, *)
Read (nin, *) n
lda = n
ldc = n
lwork = 64*n
Allocate (a(lda,n), c(ldc,n), d(n), e(n), tau(n), w(n), work(lwork), &
iblock(n), ifailv(n), isplit(n), iwork(3*n))
! Read A from data file
Read (nin, *) uplo
If (uplo=='U') Then
Read (nin, *)(a(i,i:n), i=1, n)
Else If (uplo=='L') Then
Read (nin, *)(a(i,1:i), i=1, n)
End If
! Reduce A to tridiagonal form T = (Q**T)*A*Q
Call dsytrd(uplo, n, a, lda, d, e, tau, work, lwork, info)
! Calculate the two smallest eigenvalues of T (same as A)
Call dstebz('I', 'B', n, vl, vu, 1, 2, zero, d, e, m, nsplit, w, iblock, &
isplit, work, iwork, info)
Write (nout, *)
If (info>0) Then
Write (nout, *) 'Failure to converge.'
Else
Write (nout, *) 'Eigenvalues'
Write (nout, 100) w(1:m)
! Calculate the eigenvectors of T, storing the result in C
Call dstein(n, d, e, m, w, iblock, isplit, c, ldc, work, iwork, &
ifailv, info)
If (info>0) Then
Write (nout, *) 'Failure to converge.'
Else
! Calculate the eigenvectors of A = Q * (eigenvectors of T)
Call dormtr('Left', uplo, 'No transpose', n, m, a, lda, tau, c, ldc, &
work, lwork, info)
! Print eigenvectors
Write (nout, *)
Flush (nout)
! ifail: behaviour on error exit
! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft
ifail = 0
Call nagf_file_print_matrix_real_gen('General', ' ', n, m, c, ldc, &
'Eigenvectors', ifail)
End If
End If
100 Format (3X, (9F8.4))
End Program