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))
v =
1 0
v =
0 -1
v =
-1 3
v =
3 2
v =
2 -3
v =
-3 1
|
2 | Pass |
%%
x = [1 0 -1 3 2 -3 1];
window = 3;
y_correct = 3;
assert(isequal(sum_positive(x, window),y_correct))
v =
1 0 -1
v =
0 -1 3
v =
-1 3 2
v =
3 2 -3
v =
2 -3 1
|
3 | Pass |
%%
x = [1 0 -1 3 2 -3 1];
window = 4;
y_correct = 4;
assert(isequal(sum_positive(x, window),y_correct))
v =
1 0 -1 3
v =
0 -1 3 2
v =
-1 3 2 -3
v =
3 2 -3 1
|
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))
v =
1 0
v =
0 -1
v =
-1 3
v =
3 2
v =
2 -3
v =
-3 1
v =
1 1
v =
1 1
v =
1 1
v =
1 1
v =
1 1
|
Arrange Vector in descending order
4075 Solvers
1143 Solvers
Back to basics 25 - Valid variable names
293 Solvers
Relative ratio of "1" in binary number
392 Solvers
739 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!