Giving a condition in for loop

1 次查看(过去 30 天)
Let the initial values p (i) = false; i = 1: 10 and I have a condition say a <= b
What I want is:
1) I will run a loop for i = 1:10.
2) Then I want to know for which i the condition a<= b gets satisfied.
3) Then I want to make all the p's other than the index for condition was satisfied, to be true.
For example: if for i = 2 a<= b gets satisfied then I want to make p(1), p(3), p(4),......p(10) TRUE.
Can anyone give a code for this. Thanks
  2 个评论
Dyuman Joshi
Dyuman Joshi 2023-2-10
How is the condition a<=b related to index i?
Pallov Anand
Pallov Anand 2023-2-10
编辑:Pallov Anand 2023-2-10
Actually "a" is distance between two points A and B in X-Y coordinate......Point B is fixed and Point A is changing w.r.t. time. And p encapsulates this i.e. the distance between these two points.
Suppose I have 10 robots. Each robot's current position is (x,y) and fixed point is located at (x_o, y_o). Then p(i) will be sqrt( (x(i) - x_o)^2 + (y(i) - y_o)^2 ).
And b is some constant, lets say 0.5.

请先登录,再进行评论。

采纳的回答

Dyuman Joshi
Dyuman Joshi 2023-2-10
p=zeros(1,10);
b=0.5;
for idx=1:10
a=hypot(x(idx)-x_o,y(idx)-y>o);
if a<=b
p(setdiff(1:10,idx))=1;
end
end
Another method -
for idx=1:10
a=hypot(x(idx)-x_o,y(idx)-y>o);
if a<=b
p=ones(1,10);
p(idx)=0;
end
end

更多回答(0 个)

类别

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