simulate hourly data from monthly data

조회 수: 4 (최근 30일)
masih
masih 2017년 7월 24일
편집: Andrei Bobrov 2017년 7월 24일
Hi All,
I have monthly temperature data from Jan-Dec. I want to simulate hourly temperature data from these monthly data. How do we do this in Matlab. I know that these values will be approximate and not exact but it is ok for my purposes. Please advise. Thanks
  댓글 수: 1
per isakson
per isakson 2017년 7월 24일
You might want to use a diurnal temperature model.

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

답변 (2개)

KSSV
KSSV 2017년 7월 24일
Simply you need to use interpolation.....read about interp1

Andrei Bobrov
Andrei Bobrov 2017년 7월 24일
편집: Andrei Bobrov 2017년 7월 24일
Let TT - your data as timetable:
TT = timetable(datetime(2016,1 + (0:11)',1),randi([-100 100],23,1),'v',{'Values'});
T_out = retime(TT,'hourly','pchip');

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by