deleting all rows from column 1 with duplicates in column 2.

2 views (last 30 days)
I have the following Table: Column 1 is the product ID and Column 2 is the previous product ID.
I want to delete all duplicates, so all values that are shown in colum 2 must be deleted from column 1. How can I do this.

Accepted Answer

Matt J
Matt J on 1 Aug 2023
setdiff(Column1,Column2)
  1 Comment
Rafael Borobio Castillo
Rafael Borobio Castillo on 1 Aug 2023
Thanks it works quite well, at the end I finished using ismember to identificate the position of the duplicates because I need to eliminate this from a larger dataset.
All the best, Rafael

Sign in to comment.

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!