subplot timeseries for mean monthly temperature, max monthly temperature and minimum monthly temperature

조회 수: 2 (최근 30일)
이 질문에 Star Strider 님이 플래그를 지정함
Can someone help me for subplot timeseries for mean monthly temperature, max monthly temperature and minimum monthly temperature

답변 (1개)

David Hill
David Hill 2022년 11월 22일
With matrix rows: year, month, min, mean, max
f=find(diff(data(3,:))<0);
f=[0,f,size(data,2)+1];
monthlyData=zeros(5,length(f)-2);
for k=1:length(f)-2
m=data(4,f(k)+1:f(k+1));
monthlyData(k,:)=[data(1:2,f(k+1));min(m);mean(m);max(m)];
end

카테고리

Help CenterFile Exchange에서 Time Series에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by