Value of 2nd derivative of polynomial at abscissa value u
function secondDerivativeValue input Real p[:] "Polynomial coefficients (p[1] is coefficient of highest power)"; input Real u "Abscissa value"; output Real y "Value of 2nd derivative of polynomial at u"; end secondDerivativeValue;