functioninterpolation_bandmatrix
Interpolation of the points with a Bspline of degree n. Do NOT return a Bspline struct.
Return the the raw information of control points and knots.
Extends from Modelica.Icons.Function (Icon for functions).
Information
## Copyright © EDF 2002 - 2025 ## ThermoSysPro Version 4.2
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real[:,:] | points | [i,:] is point i on the curve to be interpolated | |
| Real[size(points, 1)] | param | parameterization of the data points (not necessarily in the range 0..1) | |
| Integer | degree | 3 | Polynomial degree of interpolation |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real[size(points, 1),size(points, 2)] | controlPoints | Control points | |
| Real[size(points, 1) + degree + 1] | knots | knots |