필터 지우기
필터 지우기

Plot timeseries for mean monthly temperature

조회 수: 2 (최근 30일)
Clickme26
Clickme26 2022년 11월 22일
댓글: Star Strider 2022년 11월 22일
Can someomne help me plot timeseries for mean monthly temperature ?

답변 (2개)

Star Strider
Star Strider 2022년 11월 22일
Create a timetable of your data and then use the retime function.

cr
cr 2022년 11월 22일
편집: cr 2022년 11월 22일
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers
  댓글 수: 1
Clickme26
Clickme26 2022년 11월 22일
it reads error the vectors must be the same legth

댓글을 달려면 로그인하십시오.

카테고리

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