Eliminating duplicated values in a cell Array
Show older comments
My cel Array looks as such:
S = {'ABS' ; 'First'; 'input'; 'ABS'}
it is a column array instead of a row. I want to eliminate any and all duplicate values in the cell array. I tried the unique function with and without cell2mat and I am getting an error both ways. What is the best way I can go about eliminating duplicate values in my cell array?
Answers (1)
KALYAN ACHARJYA
on 4 Mar 2020
Edited: KALYAN ACHARJYA
on 4 Mar 2020
S = {'ABS' ; 'First'; 'input'; 'ABS'};
result=unique(S)
result
result =
3×1 cell array
'ABS'
'First'
'input'
5 Comments
Deon Hargrove
on 4 Mar 2020
KALYAN ACHARJYA
on 4 Mar 2020
Can you share the code screenshot and error message?
Deon Hargrove
on 4 Mar 2020
Stephen23
on 4 Mar 2020
Deon Hargrove
on 4 Mar 2020
Categories
Find more on String 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!