txt file to csv file
28 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponse acceptée
Walter Roberson
le 24 Juin 2012
YourData = load('YourFile.txt');
csvwrite('YourNewFile.txt', YourData);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Software Development Tools dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!