Home | History | Annotate | Download | only in auxiliary

Lines Matching refs:poly_eval

91 function poly_eval(coeffs::Array{BigFloat}, x::BigFloat)
98 return coeffs[1] + x * poly_eval(coeffs[2:n], x)
114 return poly_eval(ncoeffs, x) / poly_eval(dcoeffs, x)