How to Convert xls file to txt file in matlab?

조회 수: 34 (최근 30일)
nana rosd
nana rosd 2020년 1월 30일
댓글: nana rosd 2020년 2월 1일
I have ExcelFile.xls, with column 'Name' 'Distance' 'Result' dll.
how I can convert that file to txt file?
thanks
  댓글 수: 1
Rik
Rik 2020년 1월 30일
By reading the data and then writing it to a text file. Which of these two steps are causing you problems?

댓글을 달려면 로그인하십시오.

채택된 답변

Bhaskar R
Bhaskar R 2020년 1월 30일
Read ExcelFile.xls data and write that data to text file
Data = readtable('ExcelFile.xls');
writetable(Data, 'textfile.txt');

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by