PROGRAM f07fpfe ! F07FPF Example Program Text ! Mark 23 Release. NAG Copyright 2011. ! .. Use Statements .. USE nag_library, ONLY : nag_wp, x04dbf, zposvx ! .. Implicit None Statement .. IMPLICIT NONE ! .. Parameters .. INTEGER, PARAMETER :: nin = 5, nout = 6 ! .. Local Scalars .. REAL (KIND=nag_wp) :: rcond INTEGER :: i, ifail, info, lda, ldaf, ldb, ldx, & n, nrhs CHARACTER (1) :: equed ! .. Local Arrays .. COMPLEX (KIND=nag_wp), ALLOCATABLE :: a(:,:), af(:,:), b(:,:), work(:), & x(:,:) REAL (KIND=nag_wp), ALLOCATABLE :: berr(:), ferr(:), rwork(:), s(:) CHARACTER (1) :: clabs(1), rlabs(1) ! .. Executable Statements .. WRITE (nout,*) 'F07FPF Example Program Results' WRITE (nout,*) FLUSH (nout) ! Skip heading in data file READ (nin,*) READ (nin,*) n, nrhs lda = n ldaf = n ldb = n ldx = n ALLOCATE (a(lda,n),af(ldaf,n),b(ldb,nrhs),work(2*n),x(ldx,nrhs), & berr(nrhs),ferr(nrhs),rwork(n),s(n)) ! Read the upper triangular part of A from data file READ (nin,*) (a(i,i:n),i=1,n) ! Read B from data file READ (nin,*) (b(i,1:nrhs),i=1,n) ! Solve the equations AX = B for X ! The NAG name equivalent of zposvx is f07fpf CALL zposvx('Equilibration','Upper',n,nrhs,a,lda,af,ldaf,equed,s,b,ldb, & x,ldx,rcond,ferr,berr,work,rwork,info) IF ((info==0) .OR. (info==n+1)) THEN ! Print solution, error bounds, condition number and the form ! of equilibration ! ifail: behaviour on error exit ! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft ifail = 0 CALL x04dbf('General',' ',n,nrhs,x,ldx,'Bracketed','F7.4', & 'Solution(s)','Integer',rlabs,'Integer',clabs,80,0,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 WRITE (nout,*) IF (equed=='N') THEN WRITE (nout,*) 'A has not been equilibrated' ELSE IF (equed=='Y') THEN WRITE (nout,*) & 'A has been row and column scaled as diag(S)*A*diag(S)' END IF IF (info==n+1) THEN WRITE (nout,*) WRITE (nout,*) 'The matrix A is singular to working precision' END IF ELSE WRITE (nout,99998) 'The leading minor of order ', info, & ' is not positive definite' END IF 99999 FORMAT ((3X,1P,7E11.1)) 99998 FORMAT (1X,A,I3,A) END PROGRAM f07fpfe