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