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:
BoundaryCondition
The toplevel boundary applys to the whole datasetRowBoundary
applys to a single row in the dataset (use withBoundaryCondition::Individual
)SingleBoundary
applys to an individual boundary of a single row (use withRowBoundary::Mixed
)
Structs§
- Cubic
Spline - The CubicSpline 1d interpolation Strategy (Builder)
- Cubic
Spline Strategy - The CubicSpline 1d interpolation Strategy (Implementation)
Enums§
- Boundary
Condition - Boundary conditions for the whole dataset
- RowBoundary
- Boundary condition for a single data row
- Single
Boundary - Boundary condition for a single boundary (one side of one data row)
Traits§
- Spline
Num - Marker trait that is implemented for anything that satisfies the trait bounds required to be used as an element in the CubicSpline strategy.