Borrar filtros
Borrar filtros

How to Convert xls file to txt file in matlab?

24 visualizaciones (últimos 30 días)
nana rosd
nana rosd el 30 de En. de 2020
Comentada: nana rosd el 1 de Feb. de 2020
I have ExcelFile.xls, with column 'Name' 'Distance' 'Result' dll.
how I can convert that file to txt file?
thanks
  1 comentario
Rik
Rik el 30 de En. de 2020
By reading the data and then writing it to a text file. Which of these two steps are causing you problems?

Iniciar sesión para comentar.

Respuesta aceptada

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

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by