Export array as excel format

3 visualizzazioni (ultimi 30 giorni)
Majid Mohamod
Majid Mohamod il 6 Giu 2017
Commentato: Majid Mohamod il 6 Giu 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

Risposta accettata

KSSV
KSSV il 6 Giu 2017
Modificato: KSSV il 6 Giu 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.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by