フィルターのクリア

can you please help how to convert a csv file into ascii format?

58 ビュー (過去 30 日間)
Surya Gnyawali
Surya Gnyawali 2018 年 3 月 12 日
コメント済み: Adrienne Winter 2024 年 3 月 14 日
I have a .csv file from a graph. I need to convert it to an ascii file format. I need to load this .ascii file on another software. please help thanks
  6 件のコメント
Stephen23
Stephen23 2023 年 4 月 13 日
編集済み: Stephen23 2023 年 4 月 13 日
@Sammy: Your file is already UTF8 and contains only ASCII characters. But it does have a BOM:
I removed the BOM (using Notepad++) and uploaded it here.
Adrienne Winter
Adrienne Winter 2024 年 3 月 14 日
I had an issue where my csv was being read as an ASCII in Matlab - I saved the csv again with UTF-8 (with no BOM) from Notepad and this worked to make the csv readable (as I saw it was saved with BOM).
For anyone else who may have the same issue as me.

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

採用された回答

Walter Roberson
Walter Roberson 2018 年 3 月 13 日
The file that was uploaded is already pure ASCII.
The only thing I notice is that it uses newlines alone for end of line; it is possible that the other program needs carriage-return as well as newlines. If so then
S = fileread('Wavelength (nm)_Counts.csv');
S = regexprep(S, '\n', '\r\n');
fid = fopen('Counts_with_CR.csv', 'w');
fwrite(fid, S);
fclose(fid);
Now Counts_with_CR.csv will have the same content but with CR/NL delimiter.
  2 件のコメント
Surya Gnyawali
Surya Gnyawali 2018 年 3 月 14 日
編集済み: Surya Gnyawali 2018 年 3 月 14 日
Thanks a lot. makes much more sense. The only confusion is that the output 'S' is now a 1x4059 char. Fid is #3. Which file should I use for uploading to CytoSpec software as pure ascii file? Please advise.
Walter Roberson
Walter Roberson 2018 年 3 月 14 日
The code writes out a file Counts_with_CR.csv which would be what you would try with the CytoSpec software.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by