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/curfit/doc/cvstati.hlp | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'math/curfit/doc/cvstati.hlp')
-rw-r--r-- | math/curfit/doc/cvstati.hlp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/math/curfit/doc/cvstati.hlp b/math/curfit/doc/cvstati.hlp new file mode 100644 index 00000000..ffd05d0a --- /dev/null +++ b/math/curfit/doc/cvstati.hlp @@ -0,0 +1,47 @@ +.help cvstati May85 "Curfit Package" +.ih +NAME +cvstati -- get integer parameter +.ih +SYNOPSIS +include <math/curfit.h> + +ival = cvstati (cv, parameter) + +.nf +pointer cv # curve descriptor +int parameter # parameter to be returned +.fi +.ih +ARGUMENTS +.ls cv +The pointer to the curve descriptor structure. +.le +.ls parameter +Parameter to be return. Definitions in curfit.h are: +.nf + define CVTYPE 1 # curve type + define CVORDER 2 # order + define CVNCOEFF 3 # number of coefficients + define CVNSAVE 4 # length of save buffer +.fi +.le +.ih +DESCRIPTION +The values of integer parameters are returned. The parameters include +the curve type, the order, the number of coefficients, and the length +of the buffer required by CVSAVE (which is of TY_REAL). +.ih +EXAMPLES +.nf + include <curfit.h> + + int cvstati() + + call malloc (buf, cvstati (cv, CVNSAVE), TY_REAL) + call cvsave (cv, Memr[buf]) +.fi +.ih +SEE ALSO +cvstatr +.endhelp |