Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [];
y_correct = [];
assert(isequal(your_fcn_name(x),y_correct))
d =
[]
y =
[]
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
d =
1
y =
1
|
3 | Pass |
x = [1:5];
y_correct = [5:-1:1];
assert(isequal(your_fcn_name(x),y_correct))
d =
1 2 3 4 5
y =
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))
d =
6 7 8 9 10
1 2 3 4 5
y =
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))
d =
11 12 13 14 15
6 7 8 9 10
1 2 3 4 5
y =
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))
d =
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
y =
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))
d =
4 9 2
3 5 7
8 1 6
y =
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))
d =
-6 1 8
7 -5 3
2 9 -4
y =
8 1 -6
3 -5 7
-4 9 2
|
9832 Solvers
Sum all integers from 1 to 2^n
8421 Solvers
Find the maximum number of decimal places in a set of numbers
740 Solvers
343 Solvers
424 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!