polyval(p, x)
p
at the values specified
by the elements of x
. If x
is a matrix, the polynomial
will be evaluated at each element and a matrix returned.poly
, roots
# Evaluate 3 x^2 + 2 x + 1 at x = 5, 7, and 9
p = c(3, 2, 1);
polyval(p, c(5, 7, 9)) # 86 162 262
Run the code above in your browser using DataLab