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))
|
2 | Pass |
x = [ 4 3
5 1
5 1];
y_correct = [4;5;5;3;1;1];
assert(isequal(rearrange(x),y_correct))
|
Getting the indices from a vector
3208 Solvers
483 Solvers
387 Solvers
184 Solvers
Find the dimensions of a matrix
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!