can you please help how to convert a csv file into ascii format?
조회 수: 30 (최근 30일)
이전 댓글 표시
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
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
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
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 Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!