Generate all possible subset from a character array in MATLAB
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I need to generate all possible subset from a character array with reduced execution time. Actual input is of length '500' characters and maximum length of subset is limited to 20 characters.
For example:
input='ABCA';
output ='A', 'B', 'C', 'AB', 'BC', 'CA', 'ABC', 'BCA', 'ABCA'
4 commentaires
Walter Roberson
le 30 Mar 2019
Could you confirm that length(unique(input)) is 500? For example 500 Chinese ideographs? As opposed to length(input) being 500 but the number of unique being much smaller?
Réponses (2)
Walter Roberson
le 30 Mar 2019
Consider
[S(1:end-2);
S(2:end-1);
S(3:end)].'
Now unique rows
0 commentaires
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!