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.
次の行列があるとします
B = 0 1 0 0 0 1 0 1 1 0 0 0 1 1 1 0
最初の値が「0」で、4 番目の値が「1」である列のインデックスを返したいとします。この場合、これは になります(1, 3)。
(1, 3)
MATLAB で意図した出力を取得するにはどうすればよいですか?
あなたが使用することができます
find(B(1,:) == 0 & B(4,:) == 1)
これにより、
ans = 1 3