this is a test case specific solution and would not work if change the test cases.
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 | Fail |
%%
x = [2 6 4 9 10 3 1 5 10];
y_correct = 7;
assert(isequal(min_lpos(x),y_correct))
Error: Assertion failed.
|
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))
|
337 Solvers
Getting the row and column location from a matrix
236 Solvers
Duplicate each element of a vector.
518 Solvers
188 Solvers
283 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!