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))
|
2 | Pass |
x = [2 6 -4 9 10 3 -1 5];
y_correct = 3;
assert(isequal(min_fpos(x),y_correct))
|
3 | Pass |
x = [-4 6 -4 9 10 3 -1 5];
y_correct = 1;
assert(isequal(min_fpos(x),y_correct))
|
4 | Pass |
x = [0 6 0 9 -10 3 -1 5];
y_correct = 5;
assert(isequal(min_fpos(x),y_correct))
|
6723 Solvers
965 Solvers
Who has power to do everything in this world?
318 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
126 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!