Want to find a specific column of needed data
조회 수: 29 (최근 30일)
이전 댓글 표시
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
채택된 답변
추가 답변 (2개)
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
2015년 11월 18일
The "dim" should be columns. So you can take a transpose of your matrix.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!