Is there a better way to solve this multidimensional array?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello to everyone,
I'm currently trying to calculate annual temperatures and temperature anomalies. The data is given in one variable (here the M variable). It entails the temperatures for different longitude and latitude (basically temperatures on a regular grid), different depth and time. The first entry is the longitude and the second the latitude. The third one is for the different depth and the forth the time. The time represents 24 years, 12 entries per year meaning one temperature value for each month of the year.
The first loop is working fine even thou it takes some time. But the second loop takes too much time and effort that it never got through before my laptop broke down.
Does anyone knows maybe why it is not working, or has anyone a suggestion how could I make the program more efficient?
Thank you!
M=rand(1920,374,6,288);
sizetemp=size(M);
temp_mean=[];
for i=1:sizetemp(1); %longitude
for j=1:sizetemp(2); %latitude
for k=1:sizetemp(3) %depth
temp_mean(i,j,k)=mean(M(i,j,k,:));
end
end
end
m=1;
temp_annual=[];
an_temp=[];
for i=1:sizetemp(1); %longitude
for j=1:sizetemp(2); %latitude
for k=1:sizetemp(3) %depth
for l=1:12:sizetemp(4);
temp_annual(i,j,k,m)=mean(M(i,j,k,l:l+11));
an_temp(i,j,k,m)=temp_mean(i,j,k)-temp_annual(i,j,k,m);
m=m+1;
end
end
end
end
댓글 수: 0
채택된 답변
SALAH ALRABEEI
2021년 6월 11일
For the first averaging
%
temp_mean = nanmean(M,4);
For the 2nd annual avg use
%
A=reshape(M,19,3,6,size(M,4)/12,12);
an_temp = nanmean(A,5);
추가 답변 (1개)
Sulaymon Eshkabilov
2021년 6월 11일
Use mean2() intead of mean() that will help you to get rid of all loops.
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!