Borrar filtros
Borrar filtros

to laod multiple csv files in uitable

1 visualización (últimos 30 días)
sarfudeen
sarfudeen el 30 de Sept. de 2014
Respondida: sarfudeen el 15 de Oct. de 2014
Hi,
I have 366 nos. of csv files, in each csv files there is of 145 lines. These csv files has to be loaded in uitable.I made it reading the file using fopen and textscan but it takes too much of time to load several csv files.
Kindly please suggest a suitable solution.
Regards, M. Sarfudeen

Respuestas (1)

sarfudeen
sarfudeen el 15 de Oct. de 2014
I used the following code for reading the multiple csv files but for the execution it takes too much of time.
My code is as follows:
[files,path] = uigetfile('*.csv', 'MultiSelect','on');
FileName = fullfile(path,file);
fmt = '%s%s%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%';
num = length(FileName);
data = cell(1,num);
for i = 1 : num
fid = fopen(FileName{i},'r');
data(i) = textscan(fid,fmt,'Delimiter',',',CollectOutput',1);
end
Hence sort out this and help me in this bug at the earliest...
Regards, M. Sarfudeen

Categorías

Más información sobre String Parsing 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!

Translated by