plotting epoch time with nanoseconds
이전 댓글 표시
Hello:
I got two sets of data, both are epoch time with nano seconds, shown as below:

when I try to plot them, I got two exact same lines, as shown below:

How can I plot the difference in these two lines, i.e. bring up the precision including nano seconds, please?
Thank you in advance for any help.
Regards.
채택된 답변
추가 답변 (1개)
Peter Perkins
2017년 7월 19일
You say, "with nanoseconds", but in fact what you show is not out to nanosecond precision, only to microsecond. Which is good, because double precision doesn't have enough bits to represent nanoseconds since 1970, and only just barely enough to represend microseconds since 1970.
>> t = 1500469584.003352 % 19-Jul-2017 13:06:24.003352, approximately
t =
1.500469584003352e+09
>> eps(t)
ans =
2.384185791015625e-07
So if you do have timestamps that go out to nanoseconds, and your differences are on the order of nanoseconds, you'll be plotting noise, not data.
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
