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.
Matlab の演算子 ~= を知っている人はいますか? 私はif文でそれを見ました
if currsign ~= 0 [ ]
等しくない?
単純に「等しくない」という意味です
例えば:
1 ~= 1 % Returns false 1 ~= 2 % Returns true
Matlab では ~= は等しくありません。ただし、if に続く括弧は有効な Matlab 構文ではありません。「if」は「end」と組み合わせる必要があります