Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p=[1 3 4];
q=[4 6 9];
y_correct = [4 18 43 51 36];
assert(isequal(convolution(p,q),y_correct))
ans =
4 18 43 51 36
|
2 | Pass |
p=[8 3];
q=[2 5];
y_correct = [16 46 15];
assert(isequal(convolution(p,q),y_correct))
ans =
16 46 15
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35546 Solvers
Find out sum of all elements of given Matrix
349 Solvers
147 Solvers
129 Solvers
1221 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!