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))
y =
395 1965 5855
|
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
y =
-260 655500 6138 46880
|
3892 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
Let's get back to school, and create multiplication tables
147 Solvers
What is Sum Of all elements of Matrix
292 Solvers
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!