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, wheremax_derivative_order_evalspecifies the maximum derivative order that can be evaluated.
Cases ​
LinearInterpolationDimensionConstantInterpolationDimensionBSplineInterpolationDimension(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)Related ​
Examples
Experiments
Analyses
Tests