PROGRAM f08yhfe ! F08YHF Example Program Text ! Mark 23 Release. NAG Copyright 2011. ! .. Use Statements .. USE nag_library, ONLY : dtgsyl, nag_wp, x04caf ! .. Implicit None Statement .. IMPLICIT NONE ! .. Parameters .. INTEGER, PARAMETER :: nin = 5, nout = 6 ! .. Local Scalars .. REAL (KIND=nag_wp) :: dif, scale INTEGER :: i, ifail, ijob, info, lda, ldb, ldc, & ldd, lde, ldf, lwork, m, n ! .. Local Arrays .. REAL (KIND=nag_wp), ALLOCATABLE :: a(:,:), b(:,:), c(:,:), d(:,:), & e(:,:), f(:,:), work(:) INTEGER, ALLOCATABLE :: iwork(:) ! .. Executable Statements .. WRITE (nout,*) 'F08YHF Example Program Results' WRITE (nout,*) FLUSH (nout) ! Skip heading in data file READ (nin,*) READ (nin,*) m, n lda = m ldb = n ldc = m ldd = m lde = n ldf = m lwork = 1 ALLOCATE (a(lda,m),b(ldb,n),c(ldc,n),d(ldd,m),e(lde,n),f(ldf,n), & work(lwork),iwork(m+n+6)) ! Read A, B, D, E, C and F from data file READ (nin,*) (a(i,1:m),i=1,m) READ (nin,*) (b(i,1:n),i=1,n) READ (nin,*) (d(i,1:m),i=1,m) READ (nin,*) (e(i,1:n),i=1,n) READ (nin,*) (c(i,1:n),i=1,m) READ (nin,*) (f(i,1:n),i=1,m) ! Solve the Sylvester equations ! A*R - L*B = scale*C and D*R - L*E = scale*F ! for R and L. ijob = 0 ! The NAG name equivalent of dtgsyl is f08yhf CALL dtgsyl('No transpose',ijob,m,n,a,lda,b,ldb,c,ldc,d,ldd,e,lde,f, & ldf,scale,dif,work,lwork,iwork,info) IF (info>=1) THEN WRITE (nout,99999) WRITE (nout,*) FLUSH (nout) END IF ! Print the solution matrices R and L ! ifail: behaviour on error exit ! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft ifail = 0 CALL x04caf('General',' ',m,n,c,ldc,'Solution matrix R',ifail) WRITE (nout,*) FLUSH (nout) ifail = 0 CALL x04caf('General',' ',m,n,f,ldf,'Solution matrix L',ifail) WRITE (nout,*) WRITE (nout,99998) 'SCALE = ', scale 99999 FORMAT (/' (A,D) and (B,E) have common or very close eigenval', & 'ues.'/' Perturbed values were used to solve the equations') 99998 FORMAT (1X,A,1P,E10.2) END PROGRAM f08yhfe