How to find the index of the variable in my For Loop when a condition is met
4 次查看(过去 30 天)
显示 更早的评论
I wrote code that itterates element by element of the array 'nr'. Nr has 1000 random numbers. I want to display when two of those random numbers are of the same value, and adjacent. I think that works. I then tried to find the index of the value when it meets the condtion, but it doesnt work. I'm pretty stuck, does anyone have any tips?
for i = 1:length(nr)
if (nr(i)==nr(i+1)) %if a element in the array nr is equal to the
% element above it, then it meets the condition
fprintf("%d is adjacent to a number of equal value", i)
find(nr == i)
end
if i == 1000
break
end
end
0 个评论
采纳的回答
Asad (Mehrzad) Khoddam
2020-10-2
[~,ind] = find(diff(nr)==0)
% print indices
for i = ind
fprintf("%d is adjacent to a number of equal value\n", i)
end
0 个评论
更多回答(1 个)
Asad (Mehrzad) Khoddam
2020-10-2
Use
[nf, ind] = find(nr == i);
ind contains the index with the given condition
2 个评论
Asad (Mehrzad) Khoddam
2020-10-2
编辑:Asad (Mehrzad) Khoddam
2020-10-2
inseat of loop use:
[~, ind] = find(diff(nr)== 0);
disp(ind)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!