Excelの1つのセルに「char型の文字列」を格納する方法について
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shouhei Ookouchi
el 27 de Jul. de 2020
Comentada: Shouhei Ookouchi
el 27 de Jul. de 2020
添付したファイル「Excelwritetest.m」を実行しましたが、質問資料.pdfの図1の様な実行結果となりました。
質問資料.pdfの図2の様に「MATLABを用いて、Excelの1つのセルにchar型の文字を複数個格納すること」は可能でしょうか。
初歩的な質問で申し訳ございませんが、よろしくお願いします。
0 comentarios
Respuesta aceptada
michio
el 27 de Jul. de 2020
R2020a で添付のスクリプト試したのですが、図2のように保存されておりました。
A = 12345;
B = dec2hex(A);
C = mat2cell(B,ones(size(B,1),1));
writecell(C,'mfilewrite.csv')
キャプチャー画像は以下。
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import from MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!