Skip to content

InterpolationDimension ​

Specifies the interpolation method for each dimension in 2D table interpolation (InterpolatedTable).

Variants:

  • LinearInterpolationDimension: Linear interpolation along this axis.

  • ConstantInterpolationDimension: Constant (piecewise step) interpolation along this axis.

  • BSplineInterpolationDimension(max_derivative_order_eval): B-spline interpolation along this axis, where max_derivative_order_eval specifies the maximum derivative order that can be evaluated.

Cases ​

  • LinearInterpolationDimension

  • ConstantInterpolationDimension

  • BSplineInterpolationDimension(max_derivative_order_eval::Integer)

Source ​

dyad
"""
Specifies the interpolation method for each dimension in 2D table interpolation (`InterpolatedTable`).

Variants:
- `LinearInterpolationDimension`: Linear interpolation along this axis.
- `ConstantInterpolationDimension`: Constant (piecewise step) interpolation along this axis.
- `BSplineInterpolationDimension(max_derivative_order_eval)`: B-spline interpolation along this axis,
  where `max_derivative_order_eval` specifies the maximum derivative order that can be evaluated.
"""
enum InterpolationDimension =
  | LinearInterpolationDimension
  | ConstantInterpolationDimension
  | BSplineInterpolationDimension(max_derivative_order_eval::Integer)
  • Examples

  • Experiments

  • Analyses

  • Tests