Azzera filtri
Azzera filtri

How to Convert xls file to txt file in matlab?

23 visualizzazioni (ultimi 30 giorni)
I have ExcelFile.xls, with column 'Name' 'Distance' 'Result' dll.
how I can convert that file to txt file?
thanks
  1 Commento
Rik
Rik il 30 Gen 2020
By reading the data and then writing it to a text file. Which of these two steps are causing you problems?

Accedi per commentare.

Risposta accettata

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

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by