问题是当你这样做时:
Vector(i) = []
您正在更改数组的大小,这将首先产生您不想要的结果,其次代码中的 if 条件不会阻止脚本超出范围。解决此问题的一种方法是使用辅助向量。
Vector = [1,5,6,3,5,7,8,9];
tmp = [];
j = 1;
for i=1:length(Vector)-1
if Vector(i+1) - Vector(i) == 1
continue
end
tmp(j) = Vector(i);
j = j + 1;
end
tmp(end+1) = Vector(end);
Vector = tmp
请注意,我假设您总是希望保留最后一个元素。
如果你想避免 for 循环,你也可以这样做:
Vector = [1,5,6,3,5,7,8,9];
tmp = circshift(Vector, [0,-1]); %shifted version of Vector
tmp(end) = Vector(end)+2; %To ensure that the last element will be included
index = tmp-Vector ~= 1; %indices that satisfy the condition
Vector = Vector(index)