aboutsummaryrefslogtreecommitdiff
path: root/math/curfit/doc/cvstatr.hlp
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /math/curfit/doc/cvstatr.hlp
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'math/curfit/doc/cvstatr.hlp')
-rw-r--r--math/curfit/doc/cvstatr.hlp44
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