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


3.2.1 evaluator_evaluate_x

Synopsis

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

Description

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.

Return value

Value of function for given value of variable “x”.

See also

evaluator_create, evaluator_destroy, evaluator_evaluate