Given a vector with integer values.
Find the edge location of the stream of same value.
For example:
A=[0 0 0 1 1 1 1 2 2 2 1 1 1 15 15 15]
and we are looking for edges of sequence of 1s
The output shall be:
regions = [4 7; 11 13]
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers24
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2812 Solvers
-
Back to basics 20 - singleton dimensions
275 Solvers
-
705 Solvers
-
Add a row of zeros on top of a matrix
266 Solvers
-
211 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!