Evaluate Bspline and its first and second derivatives at one parameter
function evaluateDer2 extends Modelica.Icons.Function; input Data spline "Bspline to be evaluated"; input Real u "Parameter value at which Bspline shall be evaluated"; output Real x[spline.ndim] "Value of Bspline at u"; output Real xd[spline.ndim] "First derivative of Bspline at u"; output Real xdd[spline.ndim] "Second derivative of Bspline at u"; end evaluateDer2;