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))
|
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))
|
Find the sum of the elements in the "second" diagonal
994 Solvers
Back to basics 12 - Input Arguments
525 Solvers
Output any real number that is neither positive nor negative
316 Solvers
214 Solvers
309 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!