Hi,
I am seeing a strange result in matlab using the OR operator.
This is what I am seeing:
K>> 5==1|2
ans =
1
I must be doing something wrong, but can't figure out what. Any ideas?

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 8일

2 개 추천

This is correct
5==1
The result is 0
0|2
the result is 1

댓글 수: 4

Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 8일
Maybe you want
(5==1)|(5==2)
which gives 0
Adam
Adam 2014년 7월 9일
You are correct, I needed the 5==1|5==2 format. Thank you for your response.
Just out of curiosity, what is the other format doing, i.e. why does 5==1|2 result in true?
Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 9일
5==1|2
is the same then
(5==1)|2
Matlab consider each number different from zero as true
5==1 % is false
2 % is true
false | true %will give true
James Tursa
James Tursa 2014년 7월 9일
편집: James Tursa 2014년 7월 9일
5==1 is done first and results in a logical value 0 (i.e., false)
Then 0|2 is done next. It is a logical OR and also returns a logical result. If either of the inputs is non-zero, then the result will be 1 (i.e., true), so that is what you get for your example.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Entering Commands에 대해 자세히 알아보기

제품

태그

질문:

2014년 7월 8일

편집:

2014년 7월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by