array of ints to cell array of strings?
1 回表示 (過去 30 日間)
古いコメントを表示
I was wondering what is the best way to convert an array of integers to a cell array of strings?
Thanks.
0 件のコメント
採用された回答
Fangjun Jiang
2011 年 10 月 14 日
a=magic(5)
b=mat2cell(a,ones(size(a,1),1),ones(size(a,2),1))
c=cellfun(@num2str,b,'uni',false)
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!