Index cell where number jumps

I'm trying to identify the cell where the numbers jumps drastically...
example:
[1 2 3 4 5 6 20 21 22 23 24 25 60 61 62 63 64 65]
How do I indentify the index where 6 and 25 stop in the section of increasing numbers and the new section of increasing numbers continues.
Thanks for your help!

 Accepted Answer

A=[1 2 3 4 5 6 20 21 22 23 24 25 60 61 62 63 64 65]
B=diff(A)
find(B>1)

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!