vector of strings to cell array
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a list of numbers as strings that I want to assign to a cellarray. I currently just do a for loop to make the assignment but want to know if there is a vectorized way to do it.
A = [1 2 3 4 5 6]';
strA = num2str(A);
B = cell(6,1);
for i=1:length(A)
B{i} = strA(i);
end
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 7 Mar 2013
B=arrayfun(@num2str,A,'un',0)
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!