Converting row to column in text file
3 ビュー (過去 30 日間)
古いコメントを表示
I have a text file with annotation like this

I want to shift every alphabet in colum form. Like this.

Tried several ways. failed as the import data need comma or semicolor for separation.
Can anyone help with that?
0 件のコメント
採用された回答
Walter Roberson
2021 年 3 月 24 日
編集済み: Walter Roberson
2021 年 3 月 24 日
%note: output file name must be different than input name for this
%particular version of the code to work.
[fid, msg] = fopen('new_x01.txt', 'w');
if fid < 0; error('Could not open file because "%s"', msg); end
fprintf(fid, '%c\n', fileread('x01.txt'));
fclose(fid);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Standard File Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!