フィルターのクリア

Giving a condition in for loop

2 ビュー (過去 30 日間)
Pallov Anand
Pallov Anand 2023 年 2 月 10 日
コメント済み: Pallov Anand 2023 年 2 月 10 日
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
  1 件のコメント
Pallov Anand
Pallov Anand 2023 年 2 月 10 日
Thanks a lot

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by