PROGRAM f07cbfe ! F07CBF Example Program Text ! Mark 23 Release. NAG Copyright 2011. ! .. Use Statements .. USE nag_library, ONLY : dgtsvx, nag_wp, x04caf ! .. Implicit None Statement .. IMPLICIT NONE ! .. Parameters .. INTEGER, PARAMETER :: nin = 5, nout = 6 ! .. Local Scalars .. REAL (KIND=nag_wp) :: rcond INTEGER :: i, ifail, info, ldb, ldx, n, nrhs ! .. Local Arrays .. REAL (KIND=nag_wp), ALLOCATABLE :: b(:,:), berr(:), d(:), df(:), dl(:), & dlf(:), du(:), du2(:), duf(:), & ferr(:), work(:), x(:,:) INTEGER, ALLOCATABLE :: ipiv(:), iwork(:) ! .. Executable Statements .. WRITE (nout,*) 'F07CBF Example Program Results' WRITE (nout,*) FLUSH (nout) ! Skip heading in data file READ (nin,*) READ (nin,*) n, nrhs ldb = n ldx = n ALLOCATE (b(ldb,nrhs),berr(nrhs),d(n),df(n),dl(n-1),dlf(n-1),du(n-1), & du2(n-2),duf(n-1),ferr(nrhs),work(3*n),x(ldx,nrhs),ipiv(n),iwork(n)) ! Read the tridiagonal matrix A from data file READ (nin,*) du(1:n-1) READ (nin,*) d(1:n) READ (nin,*) dl(1:n-1) ! Read the right hand matrix B READ (nin,*) (b(i,1:nrhs),i=1,n) ! Solve the equations AX = B ! The NAG name equivalent of dgtsvx is f07cbf CALL dgtsvx('No factors','No transpose',n,nrhs,dl,d,du,dlf,df,duf,du2, & ipiv,b,ldb,x,ldx,rcond,ferr,berr,work,iwork,info) IF ((info==0) .OR. (info==n+1)) THEN ! Print solution, error bounds and condition number ! ifail: behaviour on error exit ! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft ifail = 0 CALL x04caf('General',' ',n,nrhs,x,ldx,'Solution(s)',ifail) WRITE (nout,*) WRITE (nout,*) 'Backward errors (machine-dependent)' WRITE (nout,99999) berr(1:nrhs) WRITE (nout,*) WRITE (nout,*) 'Estimated forward error bounds (machine-dependent)' WRITE (nout,99999) ferr(1:nrhs) WRITE (nout,*) WRITE (nout,*) 'Estimate of reciprocal condition number' WRITE (nout,99999) rcond IF (info==n+1) THEN WRITE (nout,*) WRITE (nout,*) 'The matrix A is singular to working precision' END IF ELSE WRITE (nout,99998) 'The (', info, ',', info, ')', & ' element of the factor U is zero' END IF 99999 FORMAT ((3X,1P,7E11.1)) 99998 FORMAT (1X,A,I3,A,I3,A,A) END PROGRAM f07cbfe