Quadratic curve, including linear extrapolation beyond defined curve limits
function quadraticCurve extends Icons.Function; input Real x "abscissa value of interest"; input Real[3] x_curve "Three points that define the abscissa curve"; input Real[3] y_curve "Three points that define the ordinate curve"; output Real y "Ordinate output at x"; end quadraticCurve;