Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5 6 7];
x_cor = [1 0 3 4 0 0 7];
assert(isequal(set_2_5_6_to_zero(x),x_cor))
x =
1 0 3 4 0 0 7
|
2 | Pass |
x = [3 5 7 2 8 9 12 22 13 17 6];
x_cor = [3 0 7 2 0 0 12 22 13 17 6];
assert(isequal(set_2_5_6_to_zero(x),x_cor))%%
x = [12.2 16.5 13.2 2.5 9.7 7.6 3.1 1.4];
x_cor = [12.2 0 13.2 2.5 0 0 3.1 1.4];
assert(isequal(set_2_5_6_to_zero(x),x_cor))
x =
3 0 7 2 0 0 12 22 13 17 6
x =
12.2000 0 13.2000 2.5000 0 0 3.1000 1.4000
|
272 Solvers
All your base are belong to us
463 Solvers
620 Solvers
436 Solvers
1096 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!