Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
bounds = [1 5 3 9 24 32];
elements = [1 2 3 4 5 6 7 8 9 24 25 26 27 28 29 30 31 32];
assert(isequal(ExpandIntervals(bounds),elements))
|
2 | Pass |
bounds = [11 11 9 9];
elements = [9 11];
assert(isequal(ExpandIntervals(bounds),elements))
|
3 | Pass |
bounds = [200 400 100 300];
elements = [100:400];
assert(isequal(ExpandIntervals(bounds),elements))
|
4 | Pass |
temp = [-10:9; -9:10];
bounds = temp(:)';
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
5 | Pass |
bounds = [-10 10];
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
785 Solvers
Back to basics 9 - Indexed References
392 Solvers
669 Solvers
405 Solvers
Deleting an element in a matrix
325 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!