Next: evaluator_derivative_x
, Previous: evaluator_evaluate_x_y
, Up: Fortran convenience procedures [Contents][Index]
evaluator_evaluate_x_y_z
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
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.
Value of function for given values of variables “x”, “y” and “z”.