how to store data in a matrix?

조회 수: 3 (최근 30일)
Lilya
Lilya 2019년 7월 17일
댓글: Lilya 2019년 7월 17일
Hi all,
I want to loop over the third dimension of the 3D matrix and calculate the average then sore the resulted data in a new matrix.
For example:
U10_series = [];
for day=1:length(datenum_array); % this time is corresponding to the number of days
filename=strcat('./MERRA2_400.tavg1_2d_ocn_Nx.2019',num2str(datevec_array(day,2),'%02i'),num2str(datevec_array(day,3),'%02i'),'.SUB.nc');
%read U10
U10 = ncread(filename,'U10M');
U10_box = U10(lon_range,lat_range,:);
U10_box_mean = nanmean(U10_box,3);
U10_series = [U10_series,U10_box_mean];
end
where am I mistaken?
The help is much appreciated

채택된 답변

KSSV
KSSV 2019년 7월 17일
U10 = ncread(filename,'U10M');
If your variable U10M is 3D, the above line reads complete data. Your U10 should be 3D. Now you can apply mean on it by specifying the dimension you want.
Also read about ncread, here you can specify the 3D dimension you want to read in a loop. If it is not clear, attach your file for further help.
  댓글 수: 3
KSSV
KSSV 2019년 7월 17일
ncfiles = dir('*.nc') ;
N = length(ncfiles) ;
for i = 1:N
ncfile = ncfiles(i).name ;
lon = ncread(ncfile,'lon') ;
lat = ncread(ncfile,'lat') ;
u = ncread(ncfile,'U10M') ;
v = ncread(ncfile,'V10M') ;
% do what you want
end
Lilya
Lilya 2019년 7월 17일
Thank you very much!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by