Module cubic_spline

Source
Expand description

The Cubic Spline interpolation stategy

This module defines the CubicSpline struct which can be used with Interp1DBuilder::strategy().

§Boundary conditions

The Cubic Spline Strategy can be customized with bounday conditions. There are 3 Levels of boundary conditions:

Structs§

CubicSpline
The CubicSpline 1d interpolation Strategy (Builder)
CubicSplineStrategy
The CubicSpline 1d interpolation Strategy (Implementation)

Enums§

BoundaryCondition
Boundary conditions for the whole dataset
RowBoundary
Boundary condition for a single data row
SingleBoundary
Boundary condition for a single boundary (one side of one data row)

Traits§

SplineNum
Marker trait that is implemented for anything that satisfies the trait bounds required to be used as an element in the CubicSpline strategy.