How to take monthly of time series using loop I am having data form each month( having 30/31) data values
Mostra commenti meno recenti
How to take monthly average from each month using loop, and in one year there should be 12 values
2 Commenti
Adam
il 17 Set 2014
Give an example of what your inputs look like otherwise it is impossible to answer. There aren't any prizes for the shortest "question" statement on the forum!
Chris Martin
il 18 Set 2014
Modificato: Chris Martin
il 18 Set 2014
Risposte (2)
dpb
il 17 Set 2014
1 voto
This question was just asked (again) and answered at
Andrei Bobrov
il 18 Set 2014
Modificato: Andrei Bobrov
il 18 Set 2014
load yourdata.mat
[ym,~,c] = unique(a(:,1:2),'rows');
s = size(a)-[0,3];
ii = repmat(c,s(2),1);
jj = repmat(1:s(2),s(1),1);
out = [ym,accumarray([ii,jj(:)],reshape(a(:,4:end),[],1),[],@mean)];
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!