Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [ 2 3
3 4
3 4];
y_correct = [2;3;3;3;4;4];
assert(isequal(rearrange(x),y_correct))
y =
2
3
3
3
4
4
|
2 | Pass |
x = [ 4 3
5 1
5 1];
y_correct = [4;5;5;3;1;1];
assert(isequal(rearrange(x),y_correct))
y =
4
5
5
3
1
1
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13055 Solvers
1601 Solvers
Basics: 'Find the eigenvalues of given matrix
323 Solvers
282 Solvers
187 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!