
x
(typically a vector), that is,
compute, for a given vector of coefficients coef
, the polynomial
coef[1] + coef[2]*x + ... + coef[p+1]*x^p
.
polynEval(coef, x)
x
can be an
array and the result matches x
.x
,
containing the polynomial values $p(x)$.
Using the C code speeds up the already fast R code available in
polyn.eval()
in package sfsmisc.
polynom
package (for example, evaluation can be done via
predict.polynomial
).
polynEval(c(1,-2,1), x = -2:7) # (x - 1)^2
polynEval(c(0, 24, -50, 35, -10, 1),
x = matrix(0:5, 2,3)) # 5 zeros!
Run the code above in your browser using DataLab