Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [];
y_correct = [];
assert(isequal(your_fcn_name(x),y_correct))
z =
[]
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
z =
1
|
3 | Pass |
x = [1:5];
y_correct = [5:-1:1];
assert(isequal(your_fcn_name(x),y_correct))
z =
5 4 3 2 1
|
4 | Pass |
x = [1:5;6:10];
y_correct = [10:-1:6;5:-1:1];
assert(isequal(your_fcn_name(x),y_correct))
z =
10 9 8 7 6
5 4 3 2 1
|
5 | Pass |
x = [1:5;6:10;11:15];
y_correct = [15:-1:11;10:-1:6;5:-1:1];
assert(isequal(your_fcn_name(x),y_correct))
z =
15 14 13 12 11
10 9 8 7 6
5 4 3 2 1
|
6 | Pass |
x = ones(5);
y_correct = ones(5);
assert(isequal(your_fcn_name(x),y_correct))
z =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
|
7 | Pass |
x = magic(3);
y_correct = [2 9 4;7 5 3;6 1 8];
assert(isequal(your_fcn_name(x),y_correct))
z =
2 9 4
7 5 3
6 1 8
|
8 | Pass |
x = [2 9 -4;7 -5 3;-6 1 8];
y_correct =[8 1 -6;3 -5 7;-4 9 2] ;
assert(isequal(your_fcn_name(x),y_correct))
z =
8 1 -6
3 -5 7
-4 9 2
|
732 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
Who has power to do everything in this world?
318 Solvers
The sum of the numbers in the vector
426 Solvers
216 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!