How can I remove duplicate values from cell array?
10 views (last 30 days)
Show older comments
I have this problem
S={ 1 2, 2 3 }
how delete duplicate value:
S becomes {1 2 3 }
0 Comments
Accepted Answer
Nicolas B.
on 11 Nov 2019
Edited: Nicolas B.
on 11 Nov 2019
So in your case, because you have a cell array:
S = {1 2 2 3};
S = num2cell(unique(cell2mat(S)));
0 Comments
More Answers (0)
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!