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))
y =
2 1 3
5 4 6
8 7 9
|
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))
y =
6 2 3 4 5 1 7
2 6 5 4 3 7 1
|
1261 Solvers
894 Solvers
4326 Solvers
347 Solvers
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!