필터 지우기
필터 지우기

Why when I do the cumulative with retime, data don't change?

조회 수: 2 (최근 30일)
Pul
Pul 2021년 8월 26일
댓글: Star Strider 2021년 8월 26일
Hello everyone,
when I use retime for doing the cumulative, values remain the same. (If you see data in 'DATI_ECM_GIORNALIERI' and data in 'Cum_Giu' are exactly the same, despite I used "Cum_Giu = retime(table2timetable(DATIECMWFgiornalieri, 'RowTimes', DTv), 'daily', @(x)sum(x,1,'omitnan'))."
How can I solve this problem?
Thank you.
%CUMULATIVE
load('DATI_ECM_GIORNALIERI')
DTv = datetime(DATIECMWFgiornalieri{:,1:3})
Cum_Giu = retime(table2timetable(DATIECMWFgiornalieri, 'RowTimes', DTv), 'daily', @(x)sum(x,1,'omitnan'))
CTv = Cum_Giu.Properties.RowTimes;
yyaxis right
plot(CTv, Cum_Giu.SMB_mpmm, 'm', 'DisplayName','ECMWF');
yyaxis left
plot(C,NEW, 'DisplayName','AWS')
Ax = gca;
Ax.YAxis(2).Color = 'm';
legend('Location','best')

채택된 답변

Star Strider
Star Strider 2021년 8월 26일
It does not change because the rows are already daily values, and the retime call summarizes the data by daily values.
.
  댓글 수: 8
Pul
Pul 2021년 8월 26일
Thanks for the tip!
Star Strider
Star Strider 2021년 8월 26일
As always, my pleasure!
.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by