필터 지우기
필터 지우기

unique rows of matrix

조회 수: 198 (최근 30일)
xplore29
xplore29 2013년 3월 25일
I have to create new matrix A from a given matrix B in the following manner
B=[1 4 2;1 5 2;1 5 2;3 3 4;3 1 4;2 1 3;2 6 3]
A=[1 2;3 4;2 3]
i-e in forming A we ignore the values which 2nd column takes in and considers only column 1 and 3 create A.
unique(A,'rows') will not do the job . Do I have to create an intermediate matrix from column 1 and 3 and the apply this unique function to get the desired matrix or is there any other option available which avoids formulation of intermediate matrix

채택된 답변

Matt Kindig
Matt Kindig 2013년 3월 25일
You can easily perform the task using:
A = unique( B(:,[1 3]), 'rows');
But of course, this forms the intermediate matrix to run the unique() function. Is there a particular reason you need to avoid this intermediate matrix running (memory issues, perhaps)?
  댓글 수: 1
xplore29
xplore29 2013년 3월 25일
I need to create such matrices multiple times. So I was thinking of avoiding this additional step

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Matt J
Matt J 2013년 3월 25일
편집: Matt J 2013년 3월 25일
You have to create an intermediate matrix, but you don't have to assign it to a variable.
A = unique(B(:,[1 3]),'rows')
What issue do you have with the above? Your B matrix is too small for this to matter and super-large matrices will be painful for UNIQUE anyway.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by