Next: , Previous: , Up: Fortran convenience procedures   [Contents][Index]


3.2.2 evaluator_evaluate_x_y

Synopsis

double precision function evaluator_evaluate_x_y (evaluator, x, y)
integer*8 :: evaluator double precision ::  x, y end function
evaluator_evaluate_x_y

Description

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.

Return value

Value of function for given values of variables “x” and “y”.

See also

evaluator_create, evaluator_destroy, evaluator_evaluate