The OpenD Programming Language

metaSpline

Spline interpolator used for non-rectiliner trapezoid-like greeds.

Parameters

grid RCArray!(immutable X)

rc-array of interpolation grid

data RCArray!(const T)

rc-array of interpolator-like structures

lBoundary SplineBoundaryCondition!F
rBoundary SplineBoundaryCondition!F

SplineBoundaryCondition for right tail.

kind SplineType

SplineType type of cubic spline.

param F

tangent power parameter for cardinal SplineType (ignored by other spline types). Use 1 for zero derivatives at knots and 0 for Catmull–Rom spline. Constraints: grid and values must have the same length >= 3

Return Value

Type: MetaSpline!(T, X)

Meta