Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
bounds = [1 5 7 9 24 32];
elements = [1 2 3 4 5 7 8 9 24 25 26 27 28 29 30 31 32];
assert(isequal(ExpandIntervals(bounds),elements))
|
2 | Pass |
bounds = [9 9 11 11];
elements = [9 11];
assert(isequal(ExpandIntervals(bounds),elements))
|
3 | Pass |
bounds = [100 200 300 400];
elements = [100:200 300:400];
assert(isequal(ExpandIntervals(bounds),elements))
|
4 | Pass |
temp = [-10:10; -10:10];
bounds = temp(:)';
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
5 | Pass |
bounds = [-10 10];
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
Getting the indices from a matrice
360 Solvers
3071 Solvers
505 Solvers
343 Solvers
2338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!