generate column array with day in year number for each hour in a year

2 ビュー (過去 30 日間)
Mayk
Mayk 2021 年 10 月 22 日
回答済み: Mayk 2021 年 10 月 22 日
Dear,
i want a column array with length equal to hours in a year: 365d*24h = 8760
the content of the array should be the number of the day, corresponding with the hours, so:
1,1,1,1,1,..1,2,2...,2,3,3,...,3... - 365,365,...,365. (total length: 8760 values, number 1 should be repeated 24 times, then number 2 repeated 24 times, etc).
How to code this efficiently?
What i tried was a for-loop, but i want to use a more efficient way:
days = zeros(24,1);
all_days = days;
for i = 1:365-1
all_days = [all_days; days+i];
end

採用された回答

KSSV
KSSV 2021 年 10 月 22 日
r=repmat(0:364,24,1) ;
r=r(:);
  1 件のコメント
Mayk
Mayk 2021 年 10 月 22 日
編集済み: Mayk 2021 年 10 月 22 日
wow genius! i did know repmat, but i didn't know that using r=r(:); puts everything in one column!
r = r(:); % this converts matrix into a one column array

サインインしてコメントする。

その他の回答 (1 件)

Mayk
Mayk 2021 年 10 月 22 日
using this improvement, my time to run this section of code decrease from:
Elapsed time is 0.002214 seconds.
to
Elapsed time is 0.000130 seconds.
thanks!
measured by puting 'tic' before code and 'toc' at end of code to measure time to run code.

カテゴリ

Help Center および File ExchangeCell Arrays についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by