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))
|
Number of 1s in the Binary Representation of a Number
356 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Determine Whether an array is empty
646 Solvers
405 Solvers
07 - Common functions and indexing 1
338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!