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))
|
Sum of diagonal of a square matrix
1327 Solvers
Return the first and last character of a string
3449 Solvers
Arrange vector in ascending order
624 Solvers
Convert from Base 10 to base 5
203 Solvers
367 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!