PROGRAM f08kbfe ! F08KBF Example Program Text ! Mark 23 Release. NAG Copyright 2011. ! .. Use Statements .. USE nag_library, ONLY : ddisna, dgesvd, nag_wp, x02ajf, x04caf ! .. Implicit None Statement .. IMPLICIT NONE ! .. Parameters .. INTEGER, PARAMETER :: nb = 64, nin = 5, nout = 6 ! .. Local Scalars .. REAL (KIND=nag_wp) :: eps, serrbd INTEGER :: i, ifail, info, lda, ldvt, lwork, m, n ! .. Local Arrays .. REAL (KIND=nag_wp), ALLOCATABLE :: a(:,:), rcondu(:), rcondv(:), s(:), & uerrbd(:), verrbd(:), vt(:,:), work(:) REAL (KIND=nag_wp) :: dummy(1,1) ! .. Intrinsic Functions .. INTRINSIC max, nint ! .. Executable Statements .. WRITE (nout,*) 'F08KBF Example Program Results' WRITE (nout,*) ! Skip heading in data file READ (nin,*) READ (nin,*) m, n lda = m ldvt = n ALLOCATE (a(lda,n),rcondu(n),rcondv(n),s(n),uerrbd(n),verrbd(n), & vt(ldvt,n)) ! Use routine workspace query to get optimal workspace. lwork = -1 ! The NAG name equivalent of dgesvd is f08kbf CALL dgesvd('Overwrite A by U','Singular vectors (V)',m,n,a,lda,s, & dummy,1,vt,ldvt,dummy,lwork,info) ! Make sure that there is enough workspace for blocksize nb. lwork = max(m+4*n+nb*(m+n),nint(dummy(1,1))) ALLOCATE (work(lwork)) ! Read the m by n matrix A from data file READ (nin,*) (a(i,1:n),i=1,m) ! Compute the singular values and left and right singular vectors ! of A (A = U*S*(V**T), m.ge.n) ! The NAG name equivalent of dgesvd is f08kbf CALL dgesvd('Overwrite A by U','Singular vectors (V)',m,n,a,lda,s, & dummy,1,vt,ldvt,work,lwork,info) IF (info==0) THEN ! Print solution WRITE (nout,*) 'Singular values' WRITE (nout,99999) s(1:n) FLUSH (nout) ! ifail: behaviour on error exit ! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft ifail = 0 CALL x04caf('General',' ',m,n,a,lda, & 'Left singular vectors (first n columns of U)',ifail) WRITE (nout,*) FLUSH (nout) CALL x04caf('General',' ',n,n,vt,ldvt, & 'Right singular vectors by row (V**T)',ifail) ! Get the machine precision, EPS and compute the approximate ! error bound for the computed singular values. Note that for ! the 2-norm, S(1) = norm(A) eps = x02ajf() serrbd = eps*s(1) ! Call DDISNA (F08FLF) to estimate reciprocal condition ! numbers for the singular vectors CALL ddisna('Left',m,n,s,rcondu,info) CALL ddisna('Right',m,n,s,rcondv,info) ! Compute the error estimates for the singular vectors DO i = 1, n uerrbd(i) = serrbd/rcondu(i) verrbd(i) = serrbd/rcondv(i) END DO ! Print the approximate error bounds for the singular values ! and vectors WRITE (nout,*) WRITE (nout,*) 'Error estimate for the singular values' WRITE (nout,99998) serrbd WRITE (nout,*) WRITE (nout,*) 'Error estimates for the left singular vectors' WRITE (nout,99998) uerrbd(1:n) WRITE (nout,*) WRITE (nout,*) 'Error estimates for the right singular vectors' WRITE (nout,99998) verrbd(1:n) ELSE WRITE (nout,99997) 'Failure in DGESVD. INFO =', info END IF 99999 FORMAT (3X,(8F8.4)) 99998 FORMAT (4X,1P,6E11.1) 99997 FORMAT (1X,A,I4) END PROGRAM f08kbfe