how could I use the "find" command to compare two matrices?
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello Matlabers,
I have 2 matrices (with 1 column and 2000 rows each) and I would like to compare each row from each matrix and get a 3rd logical matrix with 1's or 0's depending on the case... so far I tried to use the command:
control_matrix=find(A)<(B);
and this is supposed to generate a control matrix with 1's and 0's with the same size (1 column and 2000 rows) but when I apply the command it does not give me back the correct results...
any idea, suggestion or hint?
thanks! :)
댓글 수: 0
채택된 답변
Laura Proctor
2012년 12월 18일
편집: Laura Proctor
2012년 12월 18일
Comparing two matrices directly will give back a logical array:
control_matrix= A<B;
The find function will find the index values where items are nonzero.
댓글 수: 3
Laura Proctor
2012년 12월 18일
Did you try this command? It doesn't use find. If A & B are both 1x2000 element arrays, then it will return a 1x2000 element logical array containing 1's and 0's. The use of find returns the index values. Try it!
Image Analyst
2012년 12월 18일
Obviously Elsis, you did NOT try the code she provided. I think you just ran your original code instead.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!