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 ExchangeResizing 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