Borrar filtros
Borrar filtros

Reading data from csv files

1 visualización (últimos 30 días)
Ahmad Hasnain
Ahmad Hasnain el 23 de Abr. de 2019
Respondida: Guillaume el 24 de Abr. de 2019
I have 37 csv files. I need to read data from first row of all the 37 files and merge these 37 rows into one mat file.
Then I will read all the 2nd rows and merge them into one mat file.
I will keep reading the data till the last row of each csv file.
Name of my csv files are:
Col01_all
Col02_all
.
.
.
Col37_all
I am not sure how to do this.
  7 comentarios
KSSV
KSSV el 24 de Abr. de 2019
Are you sure that all A{i} are of same size?
Ahmad Hasnain
Ahmad Hasnain el 24 de Abr. de 2019
Yes, they are all of the same size 15x38

Iniciar sesión para comentar.

Respuesta aceptada

Guillaume
Guillaume el 24 de Abr. de 2019
%your original code, slightly modified
csvfiles = dir('*.csv');
filescontent = cell(numel(csvfiles), 1);
for i = 1:numel(csvfiles)
filescontent{i} = csvread(csvfiles(i).name);
end
%write rows of matrices into mat file
destfolder = 'C:\somewhere\somefolder';
allcontent = cat(3, filescontent{:}); %concatenate all matrices into a 3D matrix
%save rows of each matrix into a mat file (as variable rows)
for rowidx = 1:size(allcontent, 1)
rows = permute(allcontent(rowidx, :, :), [3 2 1]); %extract rows.Permute so each matrix is a row of rows
save(fullfile(destfolder, sprintf('row%d.mat', rowidx)), rows);
end

Más respuestas (0)

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by