Next: evaluator_get_string_length
, Previous: evaluator_destroy
, Up: Fortran main entry points [Contents][Index]
evaluator_evaluate
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
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.
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.