Program g01fe_p0w_fe
! G01FE_P0W_F Example Program Text
! Mark 27.2 Release. NAG Copyright 2021.
! .. Use Statements ..
Use iso_c_binding, Only: c_ptr
Use nagad_library, Only: g01fe_p0w_f
Use nag_library, Only: nag_wp
! .. Implicit None Statement ..
Implicit None
! .. Parameters ..
Integer, Parameter :: nin = 5, nout = 6
! .. Local Scalars ..
Type (c_ptr) :: ad_handle
Real (Kind=nag_wp) :: a, b, p, tol, x
Integer :: i, ifail, n
! .. Executable Statements ..
Write (nout,*) 'G01FE_P0W_F Example Program Results'
! Skip heading in data file
Read (nin,*)
Read (nin,*) n
tol = 0.0_nag_wp
Write (nout,*)
Write (nout,*)
Write (nout,99998) 'p', 'a', 'b', 'x'
Do i = 1, n
Read (nin,*) p, a, b
ifail = 0
Call g01fe_p0w_f(ad_handle,p,a,b,tol,x,ifail)
Write (nout,99999) p, a, b, x
End Do
99999 Format (1X,1P,7E11.2)
99998 Format (1X,A4,3A11,A15,2A11)
End Program g01fe_p0w_fe