Jump to content

Time stamp: Difference between revisions

From LabVIEW Wiki
New page: A time stamp is a data type for storing absolute time with high precision. It is a time-zone-independent number of seconds that have elapsed since 12:00 a.m., Friday, January 1, 1904,...
 
Links: Renamed section title to conform to style guide
Line 1: Line 1:
A [[time stamp]] is a data type for storing absolute time with high precision.  It is a time-zone-independent number of seconds that have elapsed since 12:00 a.m., Friday, January 1, 1904, Universal Time.  In memory, LabVIEW stores a time stamp as a cluster of four integers, where the first two integers (64 bits) represent the time-zone-independent number of complete seconds that have elapsed since 12:00 a.m., Friday, January 1, 1904, Universal Time. The next two integers (64 bits) represent the fractions of seconds.
A [[time stamp]] is a data type for storing absolute time with high precision.  It is a time-zone-independent number of seconds that have elapsed since 12:00 a.m., Friday, January 1, 1904, Universal Time.  In memory, LabVIEW stores a time stamp as a cluster of four integers, where the first two integers (64 bits) represent the time-zone-independent number of complete seconds that have elapsed since 12:00 a.m., Friday, January 1, 1904, Universal Time. The next two integers (64 bits) represent the fractions of seconds.


==Links==
==External links==


*[http://zone.ni.com/reference/en-XX/help/371361B-01/lvconcepts/how_labview_stores_data_in_memory/ LabVIEW 8.2 Help>>How LabVIEW Stores Data in Memory]
*[http://zone.ni.com/reference/en-XX/help/371361B-01/lvconcepts/how_labview_stores_data_in_memory/ LabVIEW 8.2 Help>>How LabVIEW Stores Data in Memory]
*[http://zone.ni.com/reference/en-XX/help/371361B-01/lvhowto/numeric_data_types_table/ LabVIEW 8.2 Help>>Numeric Data Types Table]
*[http://zone.ni.com/reference/en-XX/help/371361B-01/lvhowto/numeric_data_types_table/ LabVIEW 8.2 Help>>Numeric Data Types Table]

Revision as of 05:02, 8 June 2007

A time stamp is a data type for storing absolute time with high precision. It is a time-zone-independent number of seconds that have elapsed since 12:00 a.m., Friday, January 1, 1904, Universal Time. In memory, LabVIEW stores a time stamp as a cluster of four integers, where the first two integers (64 bits) represent the time-zone-independent number of complete seconds that have elapsed since 12:00 a.m., Friday, January 1, 1904, Universal Time. The next two integers (64 bits) represent the fractions of seconds.

External links