NAG Library Manual, Mark 29.3
Interfaces:  FL   CL   CPP   AD 

NAG FL Interface Introduction
Example description
    Program s15arfe

!     S15ARF Example Program Text

!     Mark 29.3 Release. NAG Copyright 2023.

!     .. Use Statements ..
      Use nag_library, Only: nag_wp, s15arf
!     .. Implicit None Statement ..
      Implicit None
!     .. Parameters ..
      Integer, Parameter               :: nin = 5, nout = 6
!     .. Local Scalars ..
      Integer                          :: i, ifail, n
!     .. Local Arrays ..
      Real (Kind=nag_wp), Allocatable  :: f(:), x(:)
!     .. Executable Statements ..
      Write (nout,*) 'S15ARF Example Program Results'

!     Skip heading in data file
      Read (nin,*)

      Write (nout,*)
      Write (nout,*) '     X           F'
      Write (nout,*)

      Read (nin,*) n

      Allocate (x(n),f(n))

      Read (nin,*) x(1:n)

      ifail = 1
      Call s15arf(n,x,f,ifail)

      Do i = 1, n
        Write (nout,99999) x(i), f(i)
      End Do

99999 Format (1X,1P,2E12.3)
    End Program s15arfe