how to delete a row if a number is repeated 4 times or 3 times

조회 수: 4 (최근 30일)
Sun Heat
Sun Heat 2021년 7월 1일
댓글: Mili Goyal 2021년 7월 7일
i have a matrix M=65005*5
there are certain rows in which number is repeated twice, thrice or four times. i want to delete that row from matrix.
for example
M=[1 1 1 1 16; 2 5 6 4 16; 2 2 2 6 5];
if 4 (because there is 4 repested number in 1st row) is written than 1st row will be deleted
when 3 (there is 3 repeated number in 3rd row) is written than 3rd row will be deleted.
Thanks in advance

답변 (1개)

Mili Goyal
Mili Goyal 2021년 7월 1일
Checking for the repeating entries in every row and then deleting itcan be one of the straightforward approach. Following is the code for the same.
%% Code
i = 1;
while i <= size(M,1)
if(length(M(i, :)) ~= length(unique(M(i, :)))) % checking for the repeated entry.
M(i, :) = []; % deleting the row.
else
i = i+1;
end
end
%%
The above will return M = [2 5 6 4 16] as the ans for the example M given in the question.
  댓글 수: 4
Sun Heat
Sun Heat 2021년 7월 1일
Yes mili.... thanks for reply The first question ask by you is my major concern..."So you mean that if 4 is given as input, the first row should be deleted?"
Mili Goyal
Mili Goyal 2021년 7월 7일
Did you try storing the number of occurances of repeating numbers for all the rows in an array and then iterating through them depending upon the input and deleting rows?

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

카테고리

Help CenterFile Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by