Store for loop data in cell array

4 vues (au cours des 30 derniers jours)
Matlab_G
Matlab_G le 21 Nov 2022
Commenté : Matlab_G le 21 Nov 2022
Hello,
I would like to store the montly_average data from the for loop in a 6x1 cell array where each element is a 12x1 cell array of the months.
for i=2000:2005
for j=1:12
monthly_average=mean(data_file(3,data(1,:)==i & data_file(2,:)==j))
end
end
Thanks in advance

Réponse acceptée

Walter Roberson
Walter Roberson le 21 Nov 2022
years = 2000:2005;
months = 1 : 12;
num_years = length(years);
num_months = length(months);
monthly_average_cell = cell(num_years, 1);
for year_idx = 1 : num_years
i = years(year_idx);
month_cell = cell(1, num_months);
for month_idx = 1 : num_months
j = months(month_idx);
month_cell{month_idx} = mean(data_file(3,data(1,:)==i & data_file(2,:)==j));
end
monthly_average_cell{year_idx} = month_cell;
end
  1 commentaire
Matlab_G
Matlab_G le 21 Nov 2022
Thank you so much! it works perfectly

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by