blob: 0164ab3ef9363d13763734db432d5889513c7718 (
plain) (
blame)
1
2
3
4
5
|
# Codes for interpolating functions.
define I_NEAREST 1 # nearest neighbor
define I_LINEAR 2 # linear interpolation
define I_POLY3 3 # four-point polynomial interpolation
define I_SPLINE 4 # cubic spline interpolation
|