diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /math/nlfit/nlevalr.x | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'math/nlfit/nlevalr.x')
-rw-r--r-- | math/nlfit/nlevalr.x | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/math/nlfit/nlevalr.x b/math/nlfit/nlevalr.x new file mode 100644 index 00000000..4c68d865 --- /dev/null +++ b/math/nlfit/nlevalr.x @@ -0,0 +1,21 @@ +include <math/nlfit.h> +include "nlfitdefr.h" + + +# NLEVAL -- Evaluate the fit at a point. + +real procedure nlevalr (nl, x, nvars) + +pointer nl # nlfit descriptor +real x[ARB] # x values +int nvars # number of variables + +real zfit + +begin + # Evaluate the function. + call zcall5 (NL_FUNC(nl), x, nvars, PARAM(NL_PARAM(nl)), + NL_NPARAMS(nl), zfit) + + return (zfit) +end |