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
|
3375 Solvers
324 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
95 Solvers
74 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!