! E04BBF Example Program Text ! Mark 24 Release. NAG Copyright 2012. Module e04bbfe_mod ! E04BBF Example Program Module: ! Parameters and User-defined Routines ! .. Use Statements .. Use nag_library, Only: nag_wp ! .. Implicit None Statement .. Implicit None ! .. Parameters .. Integer, Parameter :: nout = 6 Contains Subroutine funct(xc,fc,gc) ! Routine to evaluate F(x) and dF/dx at any point in (A, B) ! .. Scalar Arguments .. Real (Kind=nag_wp), Intent (Out) :: fc, gc Real (Kind=nag_wp), Intent (In) :: xc ! .. Intrinsic Procedures .. Intrinsic :: cos, sin ! .. Executable Statements .. fc = sin(xc)/xc gc = (cos(xc)-fc)/xc Return End Subroutine funct End Module e04bbfe_mod Program e04bbfe ! E04BBF Example Main Program ! .. Use Statements .. Use nag_library, Only: e04bbf, nag_wp Use e04bbfe_mod, Only: funct, nout ! .. Implicit None Statement .. Implicit None ! .. Local Scalars .. Real (Kind=nag_wp) :: a, b, e1, e2, f, g, x Integer :: ifail, maxcal ! .. Executable Statements .. Write (nout,*) 'E04BBF Example Program Results' ! E1 and E2 are set to zero so that E04BBF will reset them to ! their default values e1 = 0.0_nag_wp e2 = 0.0_nag_wp ! The minimum is known to lie in the range (3.5, 5.0) a = 3.5_nag_wp b = 5.0_nag_wp ! Allow 30 calls of FUNCT maxcal = 30 ifail = -1 Call e04bbf(funct,e1,e2,a,b,maxcal,x,f,g,ifail) Select Case (ifail) Case (0,2) Write (nout,*) Write (nout,99999) 'The minimum lies in the interval', a, ' to', b Write (nout,99999) 'Its estimated position is', x, ',' Write (nout,99998) 'where the function value is ', f Write (nout,99997) 'and the gradient is ', g, ' (machine dependent)' Write (nout,99996) maxcal, ' calls of FUNCT were required' End Select 99999 Format (1X,A,F11.8,A,F11.8) 99998 Format (1X,A,F7.4) 99997 Format (1X,A,1P,E8.1,A) 99996 Format (1X,I2,A) End Program e04bbfe