Writing a loop to calculate a seasonal cycle and then plot the seasonal cycle?
조회 수: 6 (최근 30일)
이전 댓글 표시
My current code is this:
{for mdo=1:12
index_month = find(month==mdo);
month_mean = mean(avhrr.sst(index_month));
seasonal_cycle(mdo)=month_mean;
s_cycle_month(index_month) = month_mean;
end
hold on
plot(t, month_mean, 'r')}
When I run this, it produces a blank graph. I think the loop is correctly producing the seasonal cycle, how can I get it to plot the graph?
댓글 수: 1
bushra raza
2019년 1월 10일
편집: bushra raza
2019년 1월 10일
Hi Victoria,
are you done with seasonal cycle calculations?
i have 30 years hourly data , and i want to see the seasonal cycle, and trend etc and further analysis. please guide me for its start?
Regards,
BNA
답변 (2개)
Chad Greene
2019년 3월 6일
Check out the season and climatology functions in the Climate Data Toolbox for Matlab. The functions make it easy to extract seasonal cycles, (and they properly detrend the data before the calculation).
댓글 수: 1
Ronald Ssembajwe
2022년 11월 30일
Hi Chad, I've used this tool box and it works perfectly. However, would you care to include mor functions in the toolbox like the one that compute/extracts the Length of the groing season given moisture/precipitation and PET spatio-temporal datasets?
Cedric
2018년 1월 10일
편집: Cedric
2018년 1월 10일
Where is t defined? In addition, month_mean is your intermediary variable; you want to plot either seasonal_cycle or s_cycle_month, which are your output vectors.
댓글 수: 2
Cedric
2018년 1월 11일
편집: Cedric
2018년 1월 11일
Check every variable. Maybe one is an empty array. Try to compute intermediary terms manually, e.g.
index_month = find(month==1)
If it outputs nothing it means that month, which you suppose is a vector with some elements equal to 1, has in fact no element equal to 1. If the output looks fine, then evaluate:
avhrr.sst(index_month)
If the output is not a vector of floating point elements, then maybe avhrr.sst is not what you think it is.
Check every expression for a given month index at first, so you are sure that the inputs are what you think they are, and that the outputs are valid. Once this works, embed it in the loop and try to debug the loop.
Also, try plotting seasonal_cycle first with e.g.
plot( seasonal_cycle ) ;
If you tried plotting s_cycle_month against t, I guess that it means that t is not 1:12. This is a little more complex to debug, because s_cycle_month is more complex than seasonal_cycle (you build the former by re-injecting the mean at positions that correspond to the current month apparently).
참고 항목
카테고리
Help Center 및 File Exchange에서 Weather and Atmospheric Science에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!