The only one came up with this kinda approach. nicely done.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 0 1];
h = [2 2 1 1];
y_correct = [6 7 6 5];
assert(isequal(circconv(x,h),y_correct))
|
2 | Pass |
x = [1 2 3 4 5];
h = [-5 3 -2 4 3];
y_correct = [20 8 21 4 -8];
assert(isequal(circconv(x,h),y_correct))
|
213 Solvers
Increment a number, given its digits
562 Solvers
651 Solvers
151 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!