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 = [1, 2, 5, 7, 6, 9, 8, 3, 4, 7, 0, 6]; b = [5, 9, 6]; [~,c] = ismember(b,a);
チルダを使用しない場合は、1x3 の論理配列を取得するだけですが、チルダを使用すると配列が取得されます。しかし、~は正確には何をするのでしょうか?