Finding unique set from large dataset
Afficher commentaires plus anciens
Hello!
How would one go about to find a unique set of variables that can depict shortly which variables are used in a large dataset using a matlab code?
For example if the english dictionary is my large dataset, I want the output to be the 26 alphabets-saying these are the unique variables used in your large dataset.
Another example
If x = {"abc", "bcd", "ded"}
I want the output as {"a","b","c","d","e"}
Thanks in advance!
Réponse acceptée
Plus de réponses (2)
Waqar Ali Memon
le 18 Juil 2019
0 votes
1 commentaire
Sanjana Sankar
le 19 Juil 2019
Bruno Luong
le 18 Juil 2019
Modifié(e) : Bruno Luong
le 18 Juil 2019
x = ["abc", "bcd", "ded"] % no need using curly bracket for strings
string(unique(cat(2,x{:}))')'
1 commentaire
Sanjana Sankar
le 19 Juil 2019
Catégories
En savoir plus sur Database Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!