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/curfit/doc/cvstati.hlp | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
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 |