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


3.2.3 evaluator_evaluate_x_y_z

Synopsis

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

Description

Convenience function to evaluate function for given variables “x”, “y” and “z” values. Function is equivalent to following:

evaluator_evaluate (evaluator, 2, 'x y z', (/ x, y, z /))

See evaluator_evaluate for further information.

Return value

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

See also

evaluator_create, evaluator_destroy, evaluator_evaluate