假设我在 Matlab 中有一个数组:
x = [1 1 1 2 2 2 3 3 3 3 2 2 3 3 3 1 1 1 1 1 2 2 2 2 3 3 3]
我想要最近一组连续'1'
s 的索引。在这种情况下,我想要答案:
answer = [16 17 18 19 20] % (which should correspond to the last sequence of 1's)
我需要一种在 Matlab 中自动执行此操作的方法,它适用于任何大小的数组,总是给我最后一组连续 1 的索引。
有什么建议么?