How to use multiple equal signs?
16 次查看(过去 30 天)
显示 更早的评论
I want to compare three values to each other, like this
a == b == c
But if I try this out with
5 == 5 == 5
It yields FALSE (0) instead of TRUE (1), while it should yield TRUE (1) if a is equal to b and equal to c like 5 is equal to 5 and equal to 5.
Any ideas on how I could fix this?
1 个评论
Adam
2017-3-22
a == b == c
does not work in Matlab because the first part evaluates to give a boolean which is then tested against the final value which will (usually) return false.
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!