From 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 11 Aug 2015 16:51:37 -0400 Subject: Repatch (from linux) of OSX IRAF --- lib/math/interp.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/math/interp.h (limited to 'lib/math/interp.h') 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 -- cgit