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
Find out sum of all elements of given Matrix
349 Solvers
Calculate square and cube of number
248 Solvers
100 Solvers
160 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!