diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /math/nlfit/nlpgetd.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'math/nlfit/nlpgetd.x')
-rw-r--r-- | math/nlfit/nlpgetd.x | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/math/nlfit/nlpgetd.x b/math/nlfit/nlpgetd.x new file mode 100644 index 00000000..419bde09 --- /dev/null +++ b/math/nlfit/nlpgetd.x @@ -0,0 +1,14 @@ +include "nlfitdefd.h" + +# NLPGET - Retreive parameter values + +procedure nlpgetd (nl, params, nparams) + +pointer nl # pointer to the nlfit structure +double params[ARB] # parameter array +int nparams # the number of the parameters + +begin + nparams = NL_NPARAMS(nl) + call amovd (PARAM(NL_PARAM(nl)), params, nparams) +end |