How to find a column with a specific set of numbers

8 ビュー (過去 30 日間)
Andrew Luce
Andrew Luce 2019 年 5 月 23 日
回答済み: madhan ravi 2019 年 5 月 29 日
Hello so I have a matrix like this:
0 5 5 0 0 6 11 11 6 6
0 0 5 5 0 0 0 5 5 0
0 0 0 0 0 0 0 0 0 0
How can I find which columns has the [6;0;0] which in this case is columns 6 and 10?
Thank you

回答 (2 件)

Adam Danz
Adam Danz 2019 年 5 月 23 日
編集済み: Adam Danz 2019 年 5 月 29 日
Use ismember() with 'rows' option.
% m is your matrix
colIdx = ismember(m.', [6 0 0], 'rows')'; % note the transpose of m
colNum = find(colIdx); % column numbers that match 6;0;0

madhan ravi
madhan ravi 2019 年 5 月 29 日
Columns = find(all(matrix==[6;0;0]))

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by