Problem 2163. Evaluate Polynomial

Given a polynomial equation coefficients in a vector p, you have to return its value at x.

Example:

For inputs p and x

 p = [1 0 1]
 x = [1 4]

Output y is [1*1^2 + 1, 1*4^2 + 1] or

 y = [2 17]

Solution Stats

78.65% Correct | 21.35% Incorrect
Last Solution submitted on Aug 23, 2023

Solution Comments

Show comments

Problem Recent Solvers135

Suggested Problems

More from this Author4

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!