Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [1 2 3 nan];
y_correct =[]
assert(isequal(isempty(your_fcn_name(x)),isempty(y_correct)))
y_correct =
[]
x =
0×4 empty double matrix
|
2 | Fail |
x = [nan nan 5;8 nan 2];
y_correct = []
assert(isequal(isempty(your_fcn_name(x)),isempty(y_correct)))
y_correct =
[]
x =
0×3 empty double matrix
|
3 | Fail |
x = [nan nan 5;1 2 3;7 8 9];
y_correct = [3;9]
assert(isequal(your_fcn_name(x),y_correct))
y_correct =
3
9
x =
1 2 3
7 8 9
|
4 | Fail |
x = [1 2 3;1 2 3;7 8 9];
y_correct = [1 2 3;1 2 3;7 8 9]
assert(isequal(your_fcn_name(x),y_correct))
y_correct =
1 2 3
1 2 3
7 8 9
x =
1 2 3
1 2 3
7 8 9
|
5 | Fail |
x = [1 2 nan;nan 2 3;7 8 9];
y_correct = 8
assert(isequal(your_fcn_name(x),y_correct))
y_correct =
8
x =
7 8 9
|
412 Solvers
452 Solvers
323 Solvers
2314 Solvers
232 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!