How to export cell array to excel

1 回表示 (過去 30 日間)
Shannon
Shannon 2020 年 2 月 4 日
回答済み: Bhaskar R 2020 年 2 月 4 日
I have a cell array, A = {'matlab' 'ver' 12},
When I export it to excel file, number 12 is text type, how to change the type to number instead of text?
Thanks,
Shannon

採用された回答

Bhaskar R
Bhaskar R 2020 年 2 月 4 日
A = {'matlab' 'ver' num2str(12)}; % actually no need of number to string conversion
writecell(A, 'filemname.xlsx');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCell Arrays についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by