Want to find a specific column of needed data

33 ビュー (過去 30 日間)
Prashant Funde
Prashant Funde 2015 年 11 月 18 日
回答済み: Prashant Funde 2015 年 11 月 18 日
I have a matrix of B= [ ]4*25 data bits, and i have another variable which consist of one of the column of B. How can i find specific column with its number?
e.g. B=[1 1 0 1; 1 1 1 0;..........0 1 1 1]; and i want to find S=[1 0 1 1] in B.

採用された回答

Stalin Samuel
Stalin Samuel 2015 年 11 月 18 日
[r c] = find(ismember(B(:,1), S, 'rows'))
  1 件のコメント
Prashant Funde
Prashant Funde 2015 年 11 月 18 日
i got this answer when i tried above method: r =
1
2
3
4
c =
1
1
1
1
but if i know only column number then also its fine... Its expected that find S in B without using for loop.

サインインしてコメントする。

その他の回答 (2 件)

Meghana Dinesh
Meghana Dinesh 2015 年 11 月 18 日
編集済み: Meghana Dinesh 2015 年 11 月 18 日
Have you tried using ismember? I believe you can use a combination of MATLAB functions find and ismember.
find(ismember(M,X),dim)
  1 件のコメント
Meghana Dinesh
Meghana Dinesh 2015 年 11 月 18 日
The "dim" should be columns. So you can take a transpose of your matrix.

サインインしてコメントする。


Prashant Funde
Prashant Funde 2015 年 11 月 18 日
need to take transpose of B as well as S to get proper answer.
Thanks for your support..

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by