Function that computes
y = ∑i=1n ci xi-1
function polynomial extends Modelica.Icons.Function; input Real[:] c "Coefficients"; input Real x "Independent variable"; output Real y "Dependent variable"; end polynomial;