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개)
Bjorn Gustavsson
2020년 8월 20일
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에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!