How to delete repeating column or duplicate column in MATLAB? of type Double
Show older comments
Hi,
How to delete the repeating or duplicate columns in matrix, is there any function in MATLAB?, for example in the input array row 2 are basically the occurance or row 1 values, so i am basically counting how many times that partiuclar value in row 1 has appeared in row 1.
Thanks in Advance
input array:
2 2 5 1 1 3 4 3 4
2 2 1 2 2 2 2 2 2
output array:
2 5 1 3 4
2 1 2 2 2
or more precise
1 2 3 4 5
2 2 2 2 1
2 Comments
the cyclist
on 17 May 2019
Is the "more precise" one like that because it is sorted by the top row?
Is there any special way to handle repeated values in the top row?
raghavendra kandukuri
on 17 May 2019
Accepted Answer
More Answers (1)
>> uA=unique(A);
>> B=[uA;histc(A,uA)]
B =
1 2 3 4 5
2 2 2 2 1
>>
ADDENDUM: Above works with only the first row and computes the counts on the presumption they had to have been obtained somewhere before to have been posted...
Categories
Find more on Shifting and Sorting Matrices 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!