Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3;4 5 6;7 8 9];
y_correct = [2 1 3;5 4 6;8 7 9];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [1 2 3 4 5 6 7;7 6 5 4 3 2 1];
y_correct = [6 2 3 4 5 1 7;2 6 5 4 3 7 1];
assert(isequal(your_fcn_name(x),y_correct))
|
17484 Solvers
Getting the indices from a vector
3212 Solvers
255 Solvers
364 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!