read/write csv file
5 ビュー (過去 30 日間)
古いコメントを表示
NAFTALI HERSCOVICI
2022 年 1 月 15 日
回答済み: Walter Roberson
2022 年 1 月 15 日
Hello,
Is it possible to read a specific range1 in a csv file AND write a specific range2 in the same file WITHOUT altering the range1
Like an 'append' option for csvwrite or xlswrite
prefere csv rather than xlsx (had many problems with xlsx format before)
Thank you
0 件のコメント
採用された回答
Walter Roberson
2022 年 1 月 15 日
dlmwrite() offers the option -append . Note, however, that this is restricted to writing additional rows immediately after all existing rows.
writematrix() offers the option 'writemode', 'append' . Note, however, that this is restricted to writing additional rows immediately after all existing rows.
The technology of the representation of text files does not permit selected parts of a file to be overwritten -- not without rewriting the entire file.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Text Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!