Evaluate Table data and first and second derivative at one parameter
function evaluateDer2 extends Modelica.Icons.Function; input Bspline1D.Data tableSpline "Bspline table to be evaluated"; input Real x "Parameter value at which the table shall be evaluated"; output Real y[tableSpline.ndim] "Value of the table at x"; output Real yd[tableSpline.ndim] "Value of the first derivative at x"; output Real ydd[tableSpline.ndim] "Value of the second derivative at x"; end evaluateDer2;