Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(4)
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
x =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
|
2 | Pass |
x = zeros(7)
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
x =
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
|
3 | Pass |
x = [5 3 0;7 12 -1; 100 5 9]
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
x =
5 3 0
7 12 -1
100 5 9
|
4 | Pass |
x = 0:10
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
x =
0 1 2 3 4 5 6 7 8 9 10
|
1600 Solvers
Number of digits in an integer
336 Solvers
Find the dimensions of a matrix
372 Solvers
125 Solvers
Basic commands - Least common multiple
151 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!