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

采纳的回答

SALAH ALRABEEI
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 个评论
Bianka Markovic
Bianka Markovic 2021-6-14
Thank you for your answer Salah Alrabeei,
unfortunately the program shows an error:
Error using reshape
To RESHAPE the number of elements must not change.
Error in test (line 44)
A=reshape(M,19,3,6,size(M,4)/12,12 );

请先登录,再进行评论。

更多回答(1 个)

Sulaymon Eshkabilov
Use mean2() intead of mean() that will help you to get rid of all loops.

类别

Help CenterFile Exchange 中查找有关 Language Fundamentals 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by