How to create a cell of strings from a vector?
2 ビュー (過去 30 日間)
古いコメントを表示
I have the vector
x = [ 10.027 20.35 50.1 100.002 ]
which I would like to convert to the cell
x = { '10', '20', '50', '100' }.
How can I do this? I know I can use sprintf('%.0f\n', x) to get the formatting I want, but not how to turn the outputs into a cell of strings.
0 件のコメント
採用された回答
Oleg Komarov
2012 年 9 月 10 日
編集済み: Oleg Komarov
2012 年 9 月 10 日
Encapsulate sprintf() into arrayfun():
arrayfun(@(in) sprintf('%.0f', in), x,'un',0)
4 件のコメント
Tom
2012 年 9 月 10 日
If you add left justify to the format it removes the leading spaces:
cellstr(num2str(x','%-0.0f'))
参考
カテゴリ
Help Center および File Exchange で Large Files and Big Data についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!