Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 nan];
y_correct =[]
assert(isequal(isempty(your_fcn_name(x)),isempty(y_correct)))
y_correct =
[]
y =
0×3 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 =
[]
|
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
y =
9
|
4 | Pass |
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
y =
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
y =
2
|
Arrange Vector in descending order
4076 Solvers
Back to basics 25 - Valid variable names
293 Solvers
171 Solvers
420 Solvers
264 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!