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))
y =
9
|
2 | Pass |
%%
x = [2 6 4 9 10 3 1 5 10];
y_correct = 7;
assert(isequal(min_lpos(x),y_correct))
y =
7
|
3 | Pass |
%%
x = [0 0 0 0];
y_correct = 4;
assert(isequal(min_lpos(x),y_correct))
y =
4
|
4 | Pass |
%%
x = [-20 6 4 9 3 1 5 -10];
y_correct = 1;
assert(isequal(min_lpos(x),y_correct))
y =
1
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13054 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Similar Triangles - find the height of the tree
203 Solvers
205 Solvers
177 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!