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))
|
2 | Pass |
%%
p=[8 3];
q=[2 5];
y_correct = [16 46 15];
assert(isequal(convolution(p,q),y_correct))
|
273 Solvers
Count decimal digits of a number
176 Solvers
Rounding off numbers to n decimals
1050 Solvers
Append two matrix as shown below example
181 Solvers
138 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!