Find the same and successive values in a vector. For example:
Input x = [ 1 0 0 1 1 1 1 0 1 1 1 0 0 0 1 ]
Start and end equal to [ 2 4 9 12
3 7 11 14 ]
The corresponding values are [ 0 1 1 0 ]
So given the input x above, you should construct the output y as follows
y = [ 2 4 9 12
3 7 11 14
0 1 1 0 ]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers57
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2813 Solvers
-
Project Euler: Problem 7, Nth prime
1751 Solvers
-
315 Solvers
-
Circular Primes (based on Project Euler, problem 35)
651 Solvers
-
2240 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.