Example description
    Program c06prfe

!     C06PRF Example Program Text

!     Mark 27.0 Release. NAG Copyright 2019.

!     .. Use Statements ..
      Use nag_library, Only: c06prf, nag_wp
!     .. Implicit None Statement ..
      Implicit None
!     .. Parameters ..
      Integer, Parameter               :: nin = 5, nout = 6
!     .. Local Scalars ..
      Integer                          :: i, ieof, ifail, j, m, n
!     .. Local Arrays ..
      Complex (Kind=nag_wp), Allocatable :: work(:), x(:)
!     .. Intrinsic Procedures ..
      Intrinsic                        :: aimag, real
!     .. Executable Statements ..
      Write (nout,*) 'C06PRF Example Program Results'
!     Skip heading in data file
      Read (nin,*)
loop: Do
        Read (nin,*,Iostat=ieof) m, n
        If (ieof<0) Then
          Exit loop
        End If

        Allocate (work((m+2)*n+15),x(m*n))
        Do j = 1, m
          Read (nin,*)(x(i*m+j),i=0,n-1)
        End Do
        Write (nout,*)
        Write (nout,*) 'Original data values'
        Do j = 1, m
          Write (nout,*)
          Write (nout,99999) 'Real ', (real(x(i*m+j)),i=0,n-1)
          Write (nout,99999) 'Imag ', (aimag(x(i*m+j)),i=0,n-1)
        End Do

!       ifail: behaviour on error exit
!              =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft
        ifail = 0
        Call c06prf('F',m,n,x,work,ifail)

        Write (nout,*)
        Write (nout,*) 'Discrete Fourier transforms'
        Do j = 1, m
          Write (nout,*)
          Write (nout,99999) 'Real ', (real(x(i*m+j)),i=0,n-1)
          Write (nout,99999) 'Imag ', (aimag(x(i*m+j)),i=0,n-1)
        End Do

        ifail = 0
        Call c06prf('B',m,n,x,work,ifail)

        Write (nout,*)
        Write (nout,*) 'Original data as restored by inverse transform'
        Do j = 1, m
          Write (nout,*)
          Write (nout,99999) 'Real ', (real(x(i*m+j)),i=0,n-1)
          Write (nout,99999) 'Imag ', (aimag(x(i*m+j)),i=0,n-1)
        End Do
        Deallocate (x,work)
      End Do loop

99999 Format (1X,A,6F10.4)
    End Program c06prfe