Program g01fb_p0w_fe
! G01FB_P0W_F Example Program Text
! Mark 29.2 Release. NAG Copyright 2023.
! .. Use Statements ..
Use iso_c_binding, Only: c_ptr
Use nagad_library, Only: g01fb_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) :: df, p, x
Integer :: i, ifail, n
Character (1) :: tail
! .. Executable Statements ..
Write (nout,*) 'G01FB_P0W_F Example Program Results'
! Skip heading in data file
Read (nin,*)
Read (nin,*) n
Write (nout,*)
Write (nout,*)
Write (nout,*) ' tail p df x'
Do i = 1, n
Read (nin,*) p, df, tail
ifail = 0
Call g01fb_p0w_f(ad_handle,tail,p,df,x,ifail)
Write (nout,99999) tail, p, df, x
End Do
99999 Format (1X,A5,1P,3E13.4)
End Program g01fb_p0w_fe