Next: , Previous: , Up: Fortran main entry points   [Contents][Index]


3.1.3 evaluator_evaluate

Synopsis

double precision function evaluator_evaluate (evaluator, count, names,
values) integer*8 :: evaluator integer :: count character(len=*) ::
names double precision :: values dimension values(*) end function
evaluator_evaluate

Description

Calculate value of function represented by evaluator object for given variable values. Evaluator object is identified by evaluator handle. Variable names are given by names string and corresponding values are given by values array respectively. Number of variables is given by count argument. Variable names in names string should be delimited by one or more blank characters.

Return value

Function value for given variable values. If some variable that appears in function is not mentioned in arguments, result is indeterminate. If all variables that appear in function are given, presence of variable or variables that doesn’t appear in function in arguments has no effect, i.e. result is still exact.

See also

evaluator_create, evaluator_destroy, evaluator_evaluate_x, evaluator_evaluate_x_y, evaluator_evaluate_x_y_z