Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p = [ 1 2 0 5 0 3 ];
y_correct = [ 5 8 0 10 0 ];
assert(isequal(PolyPol(p),y_correct))
|
2 | Pass |
p = [ 3 2 5 1 0 2];
y_correct = [ 15 8 15 2 0 ];
assert(isequal(PolyPol(p),y_correct))
|
3 | Pass |
p = [ 15 8 15 2 0 ];
y_correct = [ 60 24 30 2 ];
assert(isequal(PolyPol(p),y_correct))
|
First non-zero element in each column
470 Solvers
Back to basics 9 - Indexed References
348 Solvers
07 - Common functions and indexing 3
254 Solvers
200 Solvers
45 Solvers