Coding bug - IF statement

1 回表示 (過去 30 日間)
Anamil Mehta
Anamil Mehta 2020 年 12 月 7 日
コメント済み: Ameer Hamza 2020 年 12 月 7 日
I am working on a code right now where I need to compare a particular column of a matrix using IF statement. For some reason it wasn't working so I tried something simpler -
------
a=[1;0;0]
b=[0;0;1]
if a~=b
disp("hfsdfsdkhl")
end
-----
I am relatively new on MATLAB and dont get why the IF statement doesnot satisfy. This would not work either. Can someone help, please.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 12 月 7 日
編集済み: Ameer Hamza 2020 年 12 月 7 日
Comparing arrays like this does not work properly with the if-else block. See the output of your comparison
>> a=[1;0;0]
b=[0;0;1]
a =
1
0
0
b =
0
0
1
>> a~=b
ans =
3×1 logical array
1
0
1
It is a 3 element vector. You can use isequal() to see if all elements are equal or not
a=[1;0;0];
b=[0;0;1];
if ~isequal(a,b)
disp("hfsdfsdkhl")
end
You can also use
any(a~=b)
% or
all(a==b)
  2 件のコメント
Anamil Mehta
Anamil Mehta 2020 年 12 月 7 日
That makes sense! Thank you!
Ameer Hamza
Ameer Hamza 2020 年 12 月 7 日
I am glad to be of help!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by