Boolen logic operations between integer numbers

5 次查看(过去 30 天)
Dear All,
I would like to know the reasons why this happens:
>> 3 && -4
ans =
1
Thanks in advance for your kindly support.
Best Regards,
Josh

采纳的回答

Alexandra Harkai
Alexandra Harkai 2016-11-22
编辑:Alexandra Harkai 2016-11-22
>> logical(3)
ans =
1
>> logical(-4)
ans =
1
So 1 && 1 = 1, according to the numeric-to-logical documentation.
  2 个评论
Guillaume
Guillaume 2016-11-22
To add to this, only 0 is considered false by matlab (and many many other languages)
Josh Shamir
Josh Shamir 2016-11-22
Thank you Alexandra Harkai and Guillaume for the valuable help.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by