Want to find a specific column of needed data

32 vues (au cours des 30 derniers jours)
Prashant Funde
Prashant Funde le 18 Nov 2015
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.

Réponse acceptée

Stalin Samuel
Stalin Samuel le 18 Nov 2015
[r c] = find(ismember(B(:,1), S, 'rows'))
  1 commentaire
Prashant Funde
Prashant Funde le 18 Nov 2015
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.

Connectez-vous pour commenter.

Plus de réponses (2)

Meghana Dinesh
Meghana Dinesh le 18 Nov 2015
Modifié(e) : Meghana Dinesh le 18 Nov 2015
Have you tried using ismember? I believe you can use a combination of MATLAB functions find and ismember.
find(ismember(M,X),dim)
  1 commentaire
Meghana Dinesh
Meghana Dinesh le 18 Nov 2015
The "dim" should be columns. So you can take a transpose of your matrix.

Connectez-vous pour commenter.


Prashant Funde
Prashant Funde le 18 Nov 2015
need to take transpose of B as well as S to get proper answer.
Thanks for your support..

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by