How to replace a for loop that contains an if statement?

4 ビュー (過去 30 日間)
gsourop
gsourop 2021 年 2 月 1 日
編集済み: Star Strider 2021 年 2 月 1 日
Dear everyone,
I have 2 vectors with random numbers
A = -5 + (5+5)*rand(10,1);
B = -5 + (5+5)*rand(10,1);
and based on the sign of each pair, I want to create a third vector ('C') that will get the respective value of B, if A(i)*B(i)>0 and zero, otherwise. Is there any better way to employ this rather than using a for loop, such as:
for i = 1:10
if A(i)*B(i)>0
C(i) = B(i);
else
C(i) = 0;
end
end
A solution on the basis of not creating a third vector ('C') and overwritting B is also welcome, such as
for i = 1:10
if A(i)*B(i)<0
B(i) = 0;
end
end
Thank you in advance!

採用された回答

Star Strider
Star Strider 2021 年 2 月 1 日
編集済み: Star Strider 2021 年 2 月 1 日
One of these should do what you want:
A = -5 + (5+5)*rand(10,1);
B = -5 + (5+5)*rand(10,1);
LogicalReference = (A.*B)>0; % Logical Vector
DesiredResult = LogicalReference.*B; % Either Will Work Here
.

その他の回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 2 月 1 日
C=B.*(A.*B>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