Create a generic polynomial from coefficients (with derivative information)
function PolynomialWithDerivative input Real x "Independent variable"; input Real c[:] "Polynomial coefficients"; output Real y "Computed polynomial value"; end PolynomialWithDerivative;