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/cvstatr.hlp | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'math/curfit/doc/cvstatr.hlp')
-rw-r--r-- | math/curfit/doc/cvstatr.hlp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/math/curfit/doc/cvstatr.hlp b/math/curfit/doc/cvstatr.hlp new file mode 100644 index 00000000..f4d959c2 --- /dev/null +++ b/math/curfit/doc/cvstatr.hlp @@ -0,0 +1,44 @@ +.help cvstatr May85 "Curfit Package" +.ih +NAME +cvstatr -- get real parameter +.ih +SYNOPSIS +include <math/curfit.h> + +rval = cvstatr (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 CVXMIN 5 # minimum ordinate + define CVORDER 6 # maximum ordinate +.fi +.le +.ih +DESCRIPTION +The values of real parameters are returned. The parameters include +the minimum and maximum ordinate values of the curve. +.ih +EXAMPLES +.nf + include <curfit.h> + + real cvstatr() + + xmin = cvstatr (cv, CVXMIN) + xmax = cvstatr (cv, CVXMAX) +.fi +.ih +SEE ALSO +cvstati +.endhelp |