Extrapolator
A general purpose that takes your data and just extrapolates it. This currently only exists in template format.
__init__(self, extrapolation_function, warning=False, **opts):
extrapolation_function:None | function | Callable | Interpolatorthe function to handle extrapolation off the interpolation grid
warning:boolwhether to emit a message warning about extrapolation occurring
opts:Anythe options to feed into the extrapolator call
derivative(self, n):
find_extrapolated_points(self, gps, vals, extrap_value=nan):
Currently super rough heuristics to determine at which points we need to extrapolate
gps:Anyvals:Any:returns:_
apply(self, gps, vals, extrap_value=nan):
__call__(self, *args, **kwargs):