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

4 views (last 30 days)
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

Answers (1)

Mili Goyal
Mili Goyal on 1 Jul 2021
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 Comments
Sun Heat
Sun Heat on 1 Jul 2021
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 on 7 Jul 2021
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?

Sign in to comment.

Categories

Find more on Get Started with Optimization Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!