本文介绍了连续数字块的开始/停止值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我的矢量为:
[4,5,6,7,11,12,13,14,21,22,23]
我怎样才能没有循环 ,提取所有连续数字块的开始/结束值,即上述向量的期望结果将是2列向量:
How can I, without a loop, extract the start/end values of all consecutive number blocks i.e. the desired result for the above vector would be a 2-column vector:
b =
4 7
11 14
21 23
推荐答案
简单:
a = [4,5,6,7,11,12,13,14,21,22,23];
b = reshape(a(sort([find(a - circshift(a,[0,1]) ~= 1),find(a - circshift(a,[0,-1]) ~= -1)])),2,[])'
输出:
b =
4 7
11 14
21 23
这篇关于连续数字块的开始/停止值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!