Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
上記の質問の答えを検索しようとしましたが、適切な定式化を思いつくことができませんでした. では、a=(b==c); とは何でしょう。matlabで行います。ありがとう
それは読めa=(b==c);ばわかる
a=(b==c);
a=(b==c);あなたが割り当て(b==c)ますa
(b==c)
a
(b==c)意味b equals c?これはtrueまたはになりfalseます。
b equals c?
true
false
つまり、b が c に等しい場合に代入trueします。aそうでない場合falseは に割り当てられaます。
質問:にb等しいcですか?
b
c
答えは命題にありb==cます。
b==c
質問:命題の論理値を保存するにはどうすればよいですか?
答え:変数でa = (b==c)。
a = (b==c)