Displaying 1 result from an estimated 1 matches for "function_info".
2003 Sep 01
3
error message in nlm()
...rror message
which reads:
Error in nlm(intensities ~ f, c(epsilon.spec.start,
epsilon.unspec.start, :
invalid function value in 'nlm' optimizer
The message is generated somewhere in the compiled part, apparently
within the function
static void fcn(int n, const double x[], double *f, function_info
*state)
where a jump to a "badvalue" label is caused on different conditions:
- if the type of a value generated from the call from R is neither of
type INTSXP nor REALSXP,
- if the length of this value is not 1.
The error message is issued after the second call to the function th...