You are given two vectors of equal length: VecStart, VecEnd
Each vector contain a set of integers, where VecEnd(j)>=VecStart(j)
You have to return a set (vector) of integers of the following form:
Output =... [ VecStart(1):VecEnd(1), VecStart(2):VecEnd(2),..,VecStart(end):VecEnd(end)]
For example:
VecStart = [1 10 4]
VecEnd = [3 10 7]
--> Output = [1 2 3 10 4 5 6 7]
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers223
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2813 Solvers
-
501 Solvers
-
315 Solvers
-
531 Solvers
-
348 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Same as Problem 801
... and problem 555