Convert Serial numbers to conventional date

18 ビュー (過去 30 日間)
ASONG ZILEFAC
ASONG ZILEFAC 2012 年 11 月 4 日
Hi,
I would like to convert these serial number 17067072 to conventional date such as mm-dd-yyyy.
I have a column vector of such dates to convert. I downloaded data in netCDF format, converted to ASCII and now have to convert the dates for easy interpretation.
I could convert using 'datestr' but my dates have 8 values as above.
I appreciate your effort.
Thanks.
  1 件のコメント
ASONG ZILEFAC
ASONG ZILEFAC 2012 年 11 月 4 日
The data I downloaded is on a daily basis and spans between 1948 to 2011 on a daily timescale.

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

採用された回答

Walter Roberson
Walter Roberson 2012 年 11 月 4 日
datestr() can handle column vectors of serial date numbers.

その他の回答 (1 件)

per isakson
per isakson 2012 年 11 月 4 日
編集済み: per isakson 2012 年 11 月 5 日
NetCDF files are supposed to be self-documented. Is it "serial hour numbers"?
>> datestr( 17067072, 31 )
ans =
6728-01-21 00:00:00
>> datestr( 17067072/24, 31 )
ans =
1947-01-01 00:00:00
  2 件のコメント
ASONG ZILEFAC
ASONG ZILEFAC 2012 年 11 月 5 日
Hi Per,
It works well for this case. What if I have a column vector?
Thank so much.
Walter Roberson
Walter Roberson 2012 年 11 月 5 日
Try it and see.

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

カテゴリ

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