Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [2 6 4 9 -10 3 1 5 -10];
y_correct = 9;
assert(isequal(min_lpos(x),y_correct))
|
2 | Pass |
%%
x = [2 6 4 9 10 3 1 5 10];
y_correct = 7;
assert(isequal(min_lpos(x),y_correct))
|
3 | Pass |
%%
x = [0 0 0 0];
y_correct = 4;
assert(isequal(min_lpos(x),y_correct))
|
4 | Pass |
%%
x = [-20 6 4 9 3 1 5 -10];
y_correct = 1;
assert(isequal(min_lpos(x),y_correct))
|
1600 Solvers
Find the two most distant points
1628 Solvers
436 Solvers
2143 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!