필터 지우기
필터 지우기

How to copy text content from a .txt file to a .ats file?

조회 수: 8 (최근 30일)
Yao Li
Yao Li 2014년 1월 29일
답변: Yao Li 2014년 2월 19일
Currently, I can only generate a txt file by fprintf(). Then I have to copy and paste the content from the txt file to a .ats. I tried fprintf() directly to a .ats file or copyfile() to a .ats file, but seems the format is incorrect although the file extension is .ats. Any suggestions? I am thinking about create a empty .ats file and copy the text content to the clipboard and then copy the content to the ats file. Is it doable? Or any better solutions?

채택된 답변

Yao Li
Yao Li 2014년 2월 19일
Just wanna let you know. I resolved this issue by using
fid=fopen(filename,'wt')
Instead of
fid=fopen(filename,'w')
because the *.ats file requires the ending character of a line to be '\r\n'.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Mobile에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by