Borrar filtros
Borrar filtros

Export array as excel format

2 visualizaciones (últimos 30 días)
Majid Mohamod
Majid Mohamod el 6 de Jun. de 2017
Comentada: Majid Mohamod el 6 de Jun. de 2017
Hi all,
The following code is work perfectly to read the netcdf files. It has written by KSSV.
files = dir('*.nc4') ;
nfiles = length(files) ;
P = cell(nfiles,1) ; % precipitation of all files
date = cell(nfiles,2) ;
time = cell(nfiles,2) ;
for i = 1:nfiles
%%Read dat
date{i,1} = ncreadatt(files(i).name,'/','HDF5_GLOBAL.BeginDate') ;
date{i,2} = ncreadatt(files(i).name,'/','HDF5_GLOBAL.EndDate') ;
%%Read time
time{i,1} = ncreadatt(files(i).name,'/','HDF5_GLOBAL.BeginTime') ;
time{i,2} = ncreadatt(files(i).name,'/','HDF5_GLOBAL.EndTime') ;
%%REad precipitation
P{i} = ncread(files(i).name,'precipitation') ;
end
I added the following part, in order to export the array "P" as excel format. Please, I have basic knowledge to solve this problem. I appreciate your help and time!
Majid
i=1:nfiles
X=[{'P'};P]
xlswrite('f',X)
end

Respuesta aceptada

KSSV
KSSV el 6 de Jun. de 2017
Editada: KSSV el 6 de Jun. de 2017
myfile = 'myfile.xlsx' ;
for i = 1:nfiles
xlswrite(myfile,P{i},i)
end
Each nc-file's precipitation data written into one sheet of excel file.
  1 comentario
Majid Mohamod
Majid Mohamod el 6 de Jun. de 2017
it works perfectly :)
Thank you man

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by