How to Convert xls file to txt file in matlab?

11 次查看(过去 30 天)
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 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by