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 /lib/math/interp.h | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'lib/math/interp.h')
-rw-r--r-- | lib/math/interp.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/math/interp.h b/lib/math/interp.h new file mode 100644 index 00000000..ee08cf06 --- /dev/null +++ b/lib/math/interp.h @@ -0,0 +1,20 @@ +# File of definitions for interpolator package. + +# Interpolator Types: + +define IT_FUNCTIONS "|nearest|linear|poly3|poly5|spline3|" +define IT_NEAREST 1 +define IT_LINEAR 2 +define IT_POLY3 3 +define IT_POLY5 4 +define IT_SPLINE3 5 +define ITNIT 5 # number of types + +# Size of header etc. used for part of coeff dimension + +define SZ_ASI 20 + +# Total number of points used in spline interpolation of of bad pixels by +# subroutine arbpix. + +define SPLPTS 16 |