Boolen logic operations between integer numbers

1 view (last 30 days)
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

Accepted Answer

Alexandra Harkai
Alexandra Harkai on 22 Nov 2016
Edited: Alexandra Harkai on 22 Nov 2016
>> logical(3)
ans =
1
>> logical(-4)
ans =
1
So 1 && 1 = 1, according to the numeric-to-logical documentation.
  2 Comments
Josh Shamir
Josh Shamir on 22 Nov 2016
Thank you Alexandra Harkai and Guillaume for the valuable help.

Sign in to comment.

More Answers (0)

Categories

Find more on Satellite and Orbital Mechanics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!