Extrapolation
Extrapolation of splines. See here for some examples.
Functions
BSplineKit.SplineExtrapolations.extrapolate — Functionextrapolate(S::Union{Spline, SplineWrapper}, method::AbstractExtrapolationMethod)Construct a SplineExtrapolation from the given spline S (which can also be the result of an interpolation).
Extrapolation methods
BSplineKit.SplineExtrapolations.Flat — TypeFlat <: AbstractExtrapolationMethodRepresents a flat extrapolation: spline values at domain limits are extended to the left and to the right.
BSplineKit.SplineExtrapolations.Linear — TypeLinear <: AbstractExtrapolationMethodRepresents a linear extrapolation: splines values extend linearly beyond the left and right boundaries.
BSplineKit.SplineExtrapolations.Smooth — TypeSmooth <: AbstractExtrapolationMethodRepresents a smooth extrapolation: derivatives up to order $k - 2$ are continuous at the boundaries.
Internals
BSplineKit.SplineExtrapolations.AbstractExtrapolationMethod — TypeAbstractExtrapolationMethodAbstract type representing an extrapolation method.
BSplineKit.SplineExtrapolations.SplineExtrapolation — TypeSplineExtrapolationRepresents a spline which can be evaluated outside of its limits according to a given extrapolation method.