PROGRAM f07fdfe ! F07FDF Example Program Text ! Mark 23 Release. NAG Copyright 2011. ! .. Use Statements .. USE nag_library, ONLY : dpotrf, nag_wp, x04caf ! .. Implicit None Statement .. IMPLICIT NONE ! .. Parameters .. INTEGER, PARAMETER :: nin = 5, nout = 6 ! .. Local Scalars .. INTEGER :: i, ifail, info, lda, n CHARACTER (1) :: uplo ! .. Local Arrays .. REAL (KIND=nag_wp), ALLOCATABLE :: a(:,:) ! .. Executable Statements .. WRITE (nout,*) 'F07FDF Example Program Results' ! Skip heading in data file READ (nin,*) READ (nin,*) n lda = n ALLOCATE (a(lda,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 ! Factorize A ! The NAG name equivalent of dpotrf is f07fdf CALL dpotrf(uplo,n,a,lda,info) WRITE (nout,*) FLUSH (nout) IF (info==0) THEN ! Print factor ! ifail: behaviour on error exit ! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft ifail = 0 CALL x04caf(uplo,'Nonunit',n,n,a,lda,'Factor',ifail) ELSE WRITE (nout,*) 'A is not positive definite' END IF END PROGRAM f07fdfe