Next: evaluator_evaluate_x_y
, Previous: Fortran convenience procedures, Up: Fortran convenience procedures [Contents][Index]
evaluator_evaluate_x
double precision function evaluator_evaluate_x (evaluator, x) integer*8 :: evaluator double precision :: x end function evaluator_evaluate_x
Convenience function to evaluate function for given variable “x” value. Function is equivalent to following:
evaluator_evaluate (evaluator, 1, 'x', (/ x /))
See evaluator_evaluate
for further information.
Value of function for given value of variable “x”.