Want to find a specific column of needed data
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Prashant Funde
am 18 Nov. 2015
Beantwortet: Prashant Funde
am 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.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
Meghana Dinesh
am 18 Nov. 2015
Bearbeitet: Meghana Dinesh
am 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 Kommentar
Meghana Dinesh
am 18 Nov. 2015
The "dim" should be columns. So you can take a transpose of your matrix.
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!