What is the accuracy of the datenum function?

What is the accuracy of the datenum function? How many decimal places are retained for the seconds portion of time? When evaluating the elapsed time between dates and times, what decimal place in seconds is it accurate to?

回答 (3 件)

Andreas
Andreas 2017 年 2 月 10 日

1 投票

Milliseconds
Stephen23
Stephen23 2017 年 2 月 10 日
編集済み: Stephen23 2017 年 2 月 10 日

0 投票

Although not clearly documented, in my experience datenum and friends offer repeatable operations down to milliseconds.
Note that the theoretical limit of the double type is just less than a millisecond:
>> (3000*365*24*60*60)/pow2(52)
ans = 2.1007e-005
>> eps(3000*365)*(24*60*60)
ans = 2.0117e-005
Peter Perkins
Peter Perkins 2017 年 2 月 13 日

0 投票

Phil, unless you're using pre-R2014b, you are probably better off using datetime instead of datenum. As others have said, the practical limit of datenums is on the order of .1ms. This is one of the many improvements that datetime offers: precision down to nanoseconds.

カテゴリ

ヘルプ センター および File ExchangeTime Series Objects についてさらに検索

質問済み:

2017 年 2 月 10 日

回答済み:

2017 年 2 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by