Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
v=[1 0 0 -1];
w=[1 -1];
assert(integ(v,w))
|
2 | Pass |
%%
v=[2 9 6 -1 16 -5];
w=[2 3 -1 5];
assert(integ(v,w))
|
3 | Pass |
%%
v=[1 4 10 20 35 50 58 58 49 30];
w=1:6;
assert(integ(v,w))
|
4 | Pass |
%%
v=1:10;
w=1:6;
assert(~integ(v,w))
|
5 | Pass |
%%
v=3:12;
w=-3:2;
assert(~integ(v,w))
|
Maximum running product for a string of numbers
1112 Solvers
Generate a string like abbcccddddeeeee
234 Solvers
120 Solvers
114 Solvers
Calculate the derivative of a polynomial
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!