Index cell where number jumps

9 次查看(过去 30 天)
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!

采纳的回答

Fangjun Jiang
Fangjun Jiang 2011-11-21
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)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by