PROGRAM c06fafe ! C06FAF Example Program Text ! Mark 23 Release. NAG Copyright 2011. ! .. Use Statements .. USE nag_library, ONLY : c06faf, c06fbf, c06gbf, c06gsf, nag_wp ! .. Implicit None Statement .. IMPLICIT NONE ! .. Parameters .. INTEGER, PARAMETER :: nin = 5, nout = 6 ! .. Local Scalars .. INTEGER :: ieof, ifail, j, m, n ! .. Local Arrays .. REAL (KIND=nag_wp), ALLOCATABLE :: a(:), b(:), work(:), x(:), xx(:) ! .. Executable Statements .. WRITE (nout,*) 'C06FAF Example Program Results' ! Skip heading in data file READ (nin,*) LOOP: DO READ (nin,*,IOSTAT=ieof) n IF (ieof<0) EXIT LOOP ALLOCATE (a(0:n-1),b(0:n-1),x(0:n-1),xx(0:n-1),work(n)) READ (nin,*) x(0:n-1) xx(0:n-1) = x(0:n-1) ! ifail: behaviour on error exit ! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft ifail = 0 CALL c06faf(x,n,work,ifail) WRITE (nout,*) WRITE (nout,*) 'Components of discrete Fourier transform' WRITE (nout,*) WRITE (nout,*) ' Real Imag' WRITE (nout,*) ! Convert x to separated real and imaginary parts for printing. ifail = 0 m = 1 CALL c06gsf(m,n,x,a,b,ifail) WRITE (nout,99999) (j,a(j),b(j),j=0,n-1) CALL c06gbf(x,n,ifail) CALL c06fbf(x,n,work,ifail) WRITE (nout,*) WRITE (nout,*) 'Original sequence as restored by inverse transform' WRITE (nout,*) WRITE (nout,*) ' Original Restored' WRITE (nout,*) WRITE (nout,99999) (j,xx(j),x(j),j=0,n-1) DEALLOCATE (a,b,x,xx,work) END DO LOOP 99999 FORMAT (1X,I5,2F10.5) END PROGRAM c06fafe