필터 지우기
필터 지우기

How to extract specific rows from matrix by matching with other matrix?

조회 수: 5 (최근 30일)
Emma Kuttler
Emma Kuttler 2022년 2월 18일
편집: Jan 2022년 2월 19일
I have two matrices. One is a two-column matrix of (i,j) pairs containing 1440 rows. The other matrix is 2878 rows, with the first two columns also containing some of the same (i,j) pairs and the other columns containing useful data. I'd like to produce a new matrix that only contains the (i,j) pairs from the smaller matrix with the corresponding data from the larger matrix. Essentially, i want to find matches from the small matrix in the large matrix and add only those rows to a new matrix. In the snips below, I'd like to output only the highlighted rows in the larger matrix, because those are a match for the smaller matrix.

채택된 답변

Jan
Jan 2022년 2월 18일
편집: Jan 2022년 2월 19일
match = ismember(LargerMatrix(:, 1:2), SmallerMatrix, 'rows');
Result = LargerMatrix(match, :);
[EDITED] Consider Walter's suggestion of innerjoin().

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by