Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Insert row in a text file-formating issues
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have follwing question:
I have a "Mytext.txt" file which contains a formated table [20000X30]. It looks like:
1 2 3 4 .... 30/
2 2 3 4 .... 30/
................
20000 2 3 4...30/
I would like to insert a row after each row from the table such Mynewtext.txt" file should look like:
1 2 3 4 .... 30/
120 30/
2 2 3 4 .... 30/
120 30/
................
20000 2 3 4...30/
The row 120 30/ has to be formatted such that I have ten blanks, 120, again ten blanks and 30.
Thank you
0 件のコメント
回答 (1 件)
Christiaan
2015 年 6 月 17 日
編集済み: Christiaan
2015 年 6 月 17 日
Dear Ionut,
What you could do is use the import gui tool in MATLAB for importing text files. With this tool, you can determine how you want to import your data. It is even possible to generate a script to do this automatically. Documentation can be found here.
Once you have accieved this, you can just look at your importated mat file and modify it to your wish. (for example adding a line in your textfile) And once you are done, you can save it as a textfile again.
Kind regards, Christiaan
1 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!