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