Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
lo = 1;
hi = 15;
y_correct = 1:15;
assert(isequal(subindeces(lo,hi),y_correct))
ans =
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
2 | Pass |
lo = [1 5 10];
hi = [3 8 15];
y_correct = [1 2 3 5 6 7 8 10 11 12 13 14 15];
assert(isequal(subindeces(lo,hi),y_correct))
ans =
1 2 3
ans =
1 2 3 5 6 7 8
ans =
1 2 3 5 6 7 8 10 11 12 13 14 15
|
3 | Pass |
lo = [3 5 6 7];
hi = [1 4 6 8];
y_correct = [6 7 8];
assert(isequal(subindeces(lo,hi),y_correct))
ans =
1×0 empty double row vector
ans =
1×0 empty double row vector
ans =
6
ans =
6 7 8
|
4 | Pass |
lo = 1:5;
hi = [5 4 3 2 1];
y_correct = [1 2 3 4 5 2 3 4 3];
assert(isequal(subindeces(lo,hi),y_correct))
ans =
1 2 3 4 5
ans =
1 2 3 4 5 2 3 4
ans =
1 2 3 4 5 2 3 4 3
ans =
1 2 3 4 5 2 3 4 3
ans =
1 2 3 4 5 2 3 4 3
|
How to find the position of an element in a vector without using the find function
2477 Solvers
1882 Solvers
251 Solvers
173 Solvers
Relative ratio of "1" in binary number
392 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!