Initialize 1-dim. table interpolation
function init extends Modelica.Icons.Function; input Real table[:, :] "[x, y1(x), y2(x), ..., yn(x)] data points"; input Integer degree(min = 1) = 1 "Polynomial degree of interpolation"; output Bspline1D.Data tableSpline(ndim = size(table, 2) - 1, ncontrol = size(table, 1), degree = degree) "Table data in a form which can be quickly interpolated"; end init;