How to convert csv file to .dat file?
142 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to read a csv file and save it as .dat file without the commas. How can I do so?
0 commentaires
Réponse acceptée
Voss
le 18 Mar 2022
Modifié(e) : Voss
le 18 Mar 2022
% read the csv file:
data = readmatrix('data.csv')
% write the data to .dat file using
% space as the delimiter (no commas):
writematrix(data,'data.dat','Delimiter',' ');
% check that the .dat file looks right:
fid = fopen('data.dat');
dat_data = fread(fid,'*char').';
fclose(fid);
disp(dat_data); % looks good
I assumed the .csv file contains just numbers. If that's not the case, then you'd have to use functions other than readmatrix() and writematrix().
6 commentaires
Mateusz
le 24 Mar 2023
Hi! How should I edit your script in order to modify multiple files file_00XXX.csv to dat files?
Thank you in advance!
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets 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!