フィルターのクリア

How to convert date to day number?

7 ビュー (過去 30 日間)
miguel angel torres quintero
miguel angel torres quintero 2017 年 7 月 28 日
コメント済み: Jan 2017 年 8 月 1 日
Hello I wanna convert a date to day number. For example: 2012-Junuary-12 is equal to 12 days (we are talking about 12 days passed of 365 day) I don´t refer to Julian Day.
  3 件のコメント
James Tursa
James Tursa 2017 年 7 月 28 日
編集済み: per isakson 2017 年 7 月 28 日
@Jan: Julian Date and Day Of Year are two different things. Julian Date has a very specific meaning. E.g. from the USNO:
Or if you prefer Wiki
Jan
Jan 2017 年 8 月 1 日
Thanks, James. I hoped that the OP explain maore details also, e.g. how the input is represented and why he mentions the Julian Day.

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

回答 (1 件)

Steven Lord
Steven Lord 2017 年 7 月 28 日
dt = datetime('2012-January-12')
day(dt, 'dayofyear')
  2 件のコメント
Andrei Bobrov
Andrei Bobrov 2017 年 7 月 28 日
+1
Peter Perkins
Peter Perkins 2017 年 8 月 1 日
And also:
>> dt = datetime(2012,1:3,12)
dt =
1×3 datetime array
12-Jan-2012 12-Feb-2012 12-Mar-2012
>> dt.Format = 'yyyy:D'
dt =
1×3 datetime array
2012:12 2012:43 2012:72

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

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by