Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [1 0 -1 3 2 -3 1];
window = 2;
y_correct = 3;
assert(isequal(sum_positive(x, window),y_correct))
|
2 | Fail |
x = [1 0 -1 3 2 -3 1];
window = 3;
y_correct = 3;
assert(isequal(sum_positive(x, window),y_correct))
|
3 | Fail |
x = [1 0 -1 3 2 -3 1];
window = 4;
y_correct = 4;
assert(isequal(sum_positive(x, window),y_correct))
|
4 | Fail |
x = [1 0 -1 3 2 -3 1 1 1 1 1 1];
window = 2;
y_correct = 8;
assert(isequal(sum_positive(x, window),y_correct))
|
5703 Solvers
613 Solvers
Solve the set of simultaneous linear equations
273 Solvers
173 Solvers
2617 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!