txt file to csv file

78 visualizaciones (últimos 30 días)
huda nawaf
huda nawaf el 24 de Jun. de 2012
HI,
I have txt file :
11 2
11 4
3 2
5 6
5 7
5 8
I want this file be
11,2
11,4
3,2
5,6
etc.
I know there is somthing relate with csv, but dont know how to use it
thanks

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Jun. de 2012
YourData = load('YourFile.txt');
csvwrite('YourNewFile.txt', YourData);

Más respuestas (0)

Categorías

Más información sobre MATLAB Report Generator en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by