Excelの1つのセルに「char型の文字列」を格納する方法について
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Shouhei Ookouchi
le 27 Juil 2020
Commenté : Shouhei Ookouchi
le 27 Juil 2020
添付したファイル「Excelwritetest.m」を実行しましたが、質問資料.pdfの図1の様な実行結果となりました。
質問資料.pdfの図2の様に「MATLABを用いて、Excelの1つのセルにchar型の文字を複数個格納すること」は可能でしょうか。
初歩的な質問で申し訳ございませんが、よろしくお願いします。
0 commentaires
Réponse acceptée
michio
le 27 Juil 2020
R2020a で添付のスクリプト試したのですが、図2のように保存されておりました。
A = 12345;
B = dec2hex(A);
C = mat2cell(B,ones(size(B,1),1));
writecell(C,'mfilewrite.csv')
キャプチャー画像は以下。
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!