Filter löschen
Filter löschen

How to Convert xls file to txt file in matlab?

23 Ansichten (letzte 30 Tage)
nana rosd
nana rosd am 30 Jan. 2020
Kommentiert: nana rosd am 1 Feb. 2020
I have ExcelFile.xls, with column 'Name' 'Distance' 'Result' dll.
how I can convert that file to txt file?
thanks
  1 Kommentar
Rik
Rik am 30 Jan. 2020
By reading the data and then writing it to a text file. Which of these two steps are causing you problems?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

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

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by