dlmwrite with text and numbers

6 ビュー (過去 30 日間)
Daelyn Greene
Daelyn Greene 2019 年 2 月 19 日
コメント済み: Daelyn Greene 2019 年 2 月 19 日
I am wanting to transfer data that is input into a UI to a csv file. I am using dlmwrite currently but keep running into the issue of the csv not functioning properly. Dlmwrite is outputting nonsense text, and I frankly am lost on what to try. I've done all I know how to do.
  4 件のコメント
per isakson
per isakson 2019 年 2 月 19 日
編集済み: per isakson 2019 年 2 月 19 日
dlmwrite, Write matrix to ASCII-delimited file says dlmwrite(filename,M) writes numeric data in array M to an ASCII format file, i.e not text
Daelyn Greene
Daelyn Greene 2019 年 2 月 19 日
Do you know of a workaround for that then? Like how to transfer the text to a number array or something like that.

サインインしてコメントする。

採用された回答

per isakson
per isakson 2019 年 2 月 19 日
Something like
for jj = 1: len
fprintf( fid, '___\n', num(jj), txt{jj} )
end
is a standard approach
Another answer is under the tab, Examples, of tprintf, tprintf writes tabular data to a text file.
  1 件のコメント
Daelyn Greene
Daelyn Greene 2019 年 2 月 19 日
I will try that. Thanks for the help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeText Files についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by