Effacer les filtres
Effacer les filtres

How to Convert xls file to txt file in matlab?

23 vues (au cours des 30 derniers jours)
nana rosd
nana rosd le 30 Jan 2020
Commenté : nana rosd le 1 Fév 2020
I have ExcelFile.xls, with column 'Name' 'Distance' 'Result' dll.
how I can convert that file to txt file?
thanks
  1 commentaire
Rik
Rik le 30 Jan 2020
By reading the data and then writing it to a text file. Which of these two steps are causing you problems?

Connectez-vous pour commenter.

Réponse acceptée

Bhaskar R
Bhaskar R le 30 Jan 2020
Read ExcelFile.xls data and write that data to text file
Data = readtable('ExcelFile.xls');
writetable(Data, 'textfile.txt');
  1 commentaire
nana rosd
nana rosd le 1 Fév 2020
thank you. its work now :)

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by