a loop that checks for missing decimals in a vector, but it only runs once

조회 수: 2 (최근 30일)
Mads Albertsen
Mads Albertsen 2021년 8월 5일
댓글: Mads Albertsen 2021년 8월 11일
if want it to remove the numbers if it doesnt have 1.1, 1.2, 1.3 and so on up til 5 but it only runs once
v = [1.3, 2.2, 2.3, 4.2, 5.1, 3.2, 5.3, 3.3, 2.1, 1.1, 5.2, 3.1];
c = [1.1, 1.2, 1.3 ];
y = find(ismember(v,c));
length(y)
for i = length(v)
c = [1.1, 1.2, 1.3 ];
y = find(ismember(v,c));
length(y)
if length(y) < 3
v(y)=[];
c = c+1;
else
c = c+1;
end
end
  댓글 수: 1
Rik
Rik 2021년 8월 5일
What are you actually trying to do? Your code is uncommented and your single line description is not clear to me.

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

답변 (1개)

Awais Saeed
Awais Saeed 2021년 8월 5일
I think you want to delete elemetns of vector c from vector v. If that is what you want then you can do it as shown below
v = [1.3, 2.2, 2.3, 4.2, 5.1, 3.2, 5.3, 3.3, 2.1, 1.1, 5.2, 3.1];
c = [1.1, 1.2, 1.3 ];
y = find(ismember(v,c));
for col = length(y):-1:1 % You must do this in reverse order as the size of vector v will keep changing
idx = y(col);
v(idx) = [];
end
  댓글 수: 2
Rik
Rik 2021년 8월 5일
If that is the goal you can do it in one go:
v = [1.3, 2.2, 2.3, 4.2, 5.1, 3.2, 5.3, 3.3, 2.1, 1.1, 5.2, 3.1];
c = [1.1, 1.2, 1.3 ];
L=ismember(v,c);
v(L)=[]
v = 1×10
2.2000 2.3000 4.2000 5.1000 3.2000 5.3000 3.3000 2.1000 5.2000 3.1000
Mads Albertsen
Mads Albertsen 2021년 8월 11일
i figured it out, was just missing i = 1:length(v) since i need c to check for all the numbers uptil 5, so 4.2 also is removed since it is missing 4.1 and/or 4.3, sorry for being unclear

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

카테고리

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

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by