Program f01adfe
! F01ADF Example Program Text
! Mark 26.1 Release. NAG Copyright 2016.
! .. Use Statements ..
Use nag_library, Only: f01adf, nag_wp, x04caf
! .. Implicit None Statement ..
Implicit None
! .. Parameters ..
Integer, Parameter :: nin = 5, nout = 6
! .. Local Scalars ..
Integer :: i, ifail, lda, n
! .. Local Arrays ..
Real (Kind=nag_wp), Allocatable :: a(:,:)
! .. Executable Statements ..
Write (nout,*) 'F01ADF Example Program Results'
Write (nout,*)
Flush (nout)
! Skip heading in data file
Read (nin,*)
Read (nin,*) n
lda = n + 1
Allocate (a(lda,n))
Read (nin,*)(a(i,1:n),i=1,n)
! ifail: behaviour on error exit
! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft
ifail = 0
Call f01adf(n,a,lda,ifail)
! Print the result matrix A
Call x04caf('L','B',lda,n,a,lda,'Lower triangle of inverse',ifail)
End Program f01adfe