This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
p = [1 0 -8 -7 5];
x = [ 5 7 9 ];
y_correct = [ 395 1965 5855];
assert(isequal(polynomial(p,x),y_correct))
|
2 | Pass |
%%
p = [1 0 -10 0 0 0 11 -50];
x = [3 7 4 5];
y_correct = [-260 655500 6138 46880]
assert(isequal(polynomial(p,x),y_correct))
y_correct =
-260 655500 6138 46880
|
Vectorize the digits of an Integer
236 Solvers
2091 Solvers
271 Solvers
Let's get back to school, and create multiplication tables
103 Solvers
Matlab Basics - y as a function of x
241 Solvers