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
ans =
logical
0
|
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
ans =
logical
1
|
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
ans =
logical
1
|
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
ans =
logical
1
|
Select every other element of a vector
20357 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
583 Solvers
498 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!