Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p=[-2 0 1 -1 3 2]
q=[1 0 -1 2 4]
y_correct =[-2 0 3 -5 -6 5 -1 0 16 8];
assert(isequal(MulPoly(p,q),y_correct))
p =
-2 0 1 -1 3 2
q =
1 0 -1 2 4
|
2 | Pass |
p=[-2 0 1 0 -3 1]
q=[-1 0 -1 2 2]
y_correct =[2 0 1 -4 -2 1 5 -7 -4 2];
assert(isequal(MulPoly(p,q),y_correct))
p =
-2 0 1 0 -3 1
q =
-1 0 -1 2 2
|
3 | Pass |
p=[1 2 0 5 0 3]
q=[3 2 5 1 0 2]
y_correct =[3 8 9 26 12 36 15 15 13 0 6];
assert(isequal(MulPoly(p,q),y_correct))
p =
1 2 0 5 0 3
q =
3 2 5 1 0 2
|
725 Solvers
Sum of odd numbers in a matrix
311 Solvers
302 Solvers
168 Solvers
Find scalar product of two polynomials a and b, given as vector array.
49 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!