Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [2 6 4 9 10 3 1 5];
y_correct = 7;
assert(isequal(min_fpos(x),y_correct))
z =
1
y =
7
|
2 | Pass |
%%
x = [2 6 -4 9 10 3 -1 5];
y_correct = 3;
assert(isequal(min_fpos(x),y_correct))
z =
-4
y =
3
|
3 | Pass |
%%
x = [-4 6 -4 9 10 3 -1 5];
y_correct = 1;
assert(isequal(min_fpos(x),y_correct))
z =
-4
y =
1
|
4 | Pass |
%%
x = [0 6 0 9 -10 3 -1 5];
y_correct = 5;
assert(isequal(min_fpos(x),y_correct))
z =
-10
y =
5
|
284 Solvers
Output any real number that is neither positive nor negative
316 Solvers
505 Solvers
07 - Common functions and indexing 1
338 Solvers
2622 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!