Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0 -1 3 2 -3 1];
window = 2;
y_correct = 3;
assert(isequal(sum_positive(x, window),y_correct))
ans =
1 1 -1 2 5 -1 -2
ans =
3
|
2 | Pass |
x = [1 0 -1 3 2 -3 1];
window = 3;
y_correct = 3;
assert(isequal(sum_positive(x, window),y_correct))
ans =
1 1 0 2 4 2 0
ans =
3
|
3 | Pass |
x = [1 0 -1 3 2 -3 1];
window = 4;
y_correct = 4;
assert(isequal(sum_positive(x, window),y_correct))
ans =
1 1 0 3 4 1 3
ans =
4
|
4 | Pass |
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))
ans =
1 1 -1 2 5 -1 -2 2 2 2 2 2
ans =
8
|
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Make a random, non-repeating vector.
2803 Solvers
Get the elements of diagonal and antidiagonal for any m-by-n matrix
268 Solvers
Find nearest prime number less than input number
268 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!