Finding daily maximum & minimum temperature; and time when maximum & minimum temperature occurs

I have hourly temperatur data for years. Now I need to find daily maximum & minimum temperature; and time when maximum & minimum temperature occurs.
I don't know how to do that. Any kind of help would be appreciable. Thanks.

답변 (1개)

It seems to me that something like this reformats your temperature data right and extracts the daily peak temperature and its "hour-index":
[NUM,TXT,RAW]=xlsread('Hourly Temperature.xlsx');
imagesc(reshape(NUM(:,2),24,[]))
T = reshape(NUM(:,2),24,[]);
[Tmax,iTmax] = max(T);
hold on
plot(iTmax,'r*')
HTH

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

질문:

2020년 8월 20일

답변:

2020년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by