How to load multiple csv files and save them after converting into arff files?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hello_world
el 10 de Jun. de 2015
Editada: hello_world
el 12 de Jun. de 2015
Hello Friends,
I have several csv files, all stored in path 'C:\Users\Name\Documents\MATLAB\*.csv'. I want to loop one by one each file in order, convert them into arff files, and save them 'C:\Users\Name\Documents\MATLAB\*.arff'
0 comentarios
Respuesta aceptada
Walter Roberson
el 10 de Jun. de 2015
datadir = 'C:\Users\Name\Documents\MATLAB';
d = dir(fullfile(datadir, '*.csv'));
for i=1:length(d)
filename = fullfile(datadir, d(i).name);
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!