How to make a={'1','2','3','4'} to b={'1234'}
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
a={'1','2','3','4'}
make to b={'1234'}
0 commentaires
Réponse acceptée
Wan Ji
le 1 Sep 2021
The simple way is
a={'1','2','3','4'};
b = {[a{:}]}
Answer
b =
1×1 cell array
{'1234'}
0 commentaires
Plus de réponses (2)
Walter Roberson
le 1 Sep 2021
Modifié(e) : Walter Roberson
le 1 Sep 2021
a={'1','2','3','4'}
B = {strjoin(a, '')}
0 commentaires
Voir également
Catégories
En savoir plus sur Characters and Strings 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!