About logical calculation. Is this a bug?

2 ビュー (過去 30 日間)
Jingli Xie
Jingli Xie 2020 年 1 月 14 日
コメント済み: Steven Lord 2020 年 1 月 14 日
3.jpg
what happened to this case? Is this a matlab bug?
  1 件のコメント
Jingli Xie
Jingli Xie 2020 年 1 月 14 日
logical should be 1 at the lower left corner of the picture.
-1<p_grad == 1, p_grad < 1 ==1, bug -1<p_grad<1 == 0

サインインしてコメントする。

採用された回答

Adam Danz
Adam Danz 2020 年 1 月 14 日
編集済み: Adam Danz 2020 年 1 月 14 日
The operation
p_grad = 1.1200e-17;
-1 < p_grad < 1
works from left-to-right. It is interpretted as
p_grad = 1.1200e-17;
(-1 < p_grad) < 1
which is simplified to
1 < 1
which equals 0 (false).
To determine if p_grad is between -1 and 1, (parentheses optional)
(-1 < p_grad) && (p_grad < 1) % for scalar values
(-1 < p_grad) & (p_grad < 1) % for non-scalar values or when
% number of element is unknown
  3 件のコメント
Stephen23
Stephen23 2020 年 1 月 14 日
Steven Lord
Steven Lord 2020 年 1 月 14 日
If I remember correctly, as of release R2019b if you try to use that idiom in a file in the Editor Code Analyzer will warn you that it doesn't do what you think it does.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by