strings function not available on MATLAB 2013
Afficher commentaires plus anciens
Since strings function was introduced in MATLAB 2016, how can one create a m by n array of empty strings in MATLAB 2013? Any suggestions?
Réponses (2)
Geoff Hayes
le 19 Déc 2017
Said - you could try something like
stringArray = repmat({''},10,2)
We use repmat to repeat copies of our cell array which has an empty string. In the above example, a 10x2 cell array of empty strings is created.
Fangjun Jiang
le 19 Déc 2017
Modifié(e) : Fangjun Jiang
le 19 Déc 2017
s=cell(3,2);
s(:)={''}
ischar(s{3,1})
Catégories
En savoir plus sur Characters and Strings 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!