Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y = 1;
z = 1;
assert(isequal(weightedConv(x,y),z))
|
2 | Pass |
x = 1:2;
y = 3:4;
z = [3 10];
assert(isequal(weightedConv(x,y),z))
|
3 | Pass |
x = 1:3;
y = 4:6;
z = [4 13 38];
assert(isequal(weightedConv(x,y),z))
|
4 | Pass |
x = 1:4;
y = 5:8;
z = [5 16 46 124];
assert(isequal(weightedConv(x,y),z))
|
5 | Pass |
x = 1:10;
y = 2:11;
z = [2,7,22,64,176,464,1184,2944,7168,17152];
assert(isequal(weightedConv(x,y),z))
|
620 Solvers
Remove the two elements next to NaN value
411 Solvers
228 Solvers
530 Solvers
450 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!