Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How would I locate non-zeros given a condition?
1 回表示 (過去 30 日間)
古いコメントを表示
Say that I have the matrix
1 0 1 1
0 0 0 1
0 0 0 0
and I want to find the row with a non-zero in the 4th column and at least 1 more non-zero in columns 1-3. Anyone know how I would approach this?
回答 (1 件)
Alex Mcaulley
2020 年 1 月 28 日
For example:
A = [1 0 1 1
0 0 0 1
0 0 0 0];
rows = find(A(:,4) & sum(A(:,1:3)~=0,2));
1 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!