If 6==6==6
c=1
Else
c=0
end
When i type the above code i get c=0 but logically i should get c=6 As 6 is equal to 6. Where is my error and how could i rewrite the code?

 채택된 답변

Roger Stafford
Roger Stafford 2015년 3월 15일

1 개 추천

You should realize that "6==6==6" is operated on as:
(6==6)==6
The (6==6) will give a true result, and which in combination with the third 6 will be converted to a numerical 1. Then you have 1==6 which is false. You will always get a false result with c = 0 as a result. In other words 6==6==6 is definitely false in the matlab world. Advice: don't use it! What were you trying to achieve?

댓글 수: 2

AA
AA 2015년 3월 15일
So how do i rewrite it, assume u have x,y,z=6 and u want to see if x=y=z
if x == y && y == z

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

추가 답변 (0개)

카테고리

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

질문:

AA
2015년 3월 15일

댓글:

2015년 3월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by