Why do I receive "Index exceeds the number of array elements. Index must not exceed 7." when trying to remove indices that are followed directly by a zero using a for loop.

조회 수: 2 (최근 30일)
here's the function I am trying to use
function removed = removeData(vec)
vec1 = vec;
for x = 1:length(vec)
if vec(x+1) == 0
if vec(x)~=0
vec1(x)=[];
end
end
end
removed = vec1;
end
and heres the code I am trying to test it on
ans1 = removeData([2 3 0 0 7 8 0])
  댓글 수: 1
Torsten
Torsten 2022년 10월 31일
편집: Torsten 2022년 10월 31일
Maybe you should first explain what "removeData" is supposed to do with "vec".
From your code, it should remove the nonzero number preceeding a sequence of zeros, but I'm not sure if this is really what you want to achieve.

댓글을 달려면 로그인하십시오.

답변 (1개)

Jon
Jon 2022년 10월 21일
Your loop variable x goes from 1 to the length of the vector.
In line 4 you try to assign vec(x+1), on the last iteration x = length of the vector so vec(x+1) is one element beyond the last element in the vector.
By the way it is more conventional style to use i,j,k,l,m for integer indices, x is usually used for real values, e.g 4.3216

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by