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 |
u = [1 3 5 3]; v = [1,1];
y_correct = [1 2 3];
assert(isequal(poly_div(u,v),y_correct));
|
2 | Pass |
u=[4 -2 -14 -3 17 21 9]; v = [1 2 1];
y_correct = [4 -10 2 3 9];
assert(isequal(poly_div(u,v),y_correct));
|
405 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
250 Solvers
104 Solvers
343 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!