Evaluate polynomial at a given abscissa value
function evaluate input Real p[:] "Polynomial coefficients (p[1] is coefficient of highest power)"; input Real u "Abscissa value"; output Real y "Value of polynomial at u"; end evaluate;