Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

time

Return the current time as the number of seconds or nanoseconds since the epoch.

Syntax

  • t_s = time()
  • t_s = time('s')
  • t_ns = time('ns')

Output argument

  • t_s - a double: value of current time as the number of seconds since the epoch.
  • t_ns - a unsigned integer 64 bit: value of current time as the number of nanoseconds since the epoch.

Description

time returns the current time as the number of seconds or nanoseconds since the epoch.

The epoch is referenced to 00:00:00 UTC (Coordinated Universal Time) 1 Jan 1970.

Example

t1=time()
sleep(10)
t2 = time()
t2 - t1

See also

tic, sleep.

History

VersionDescription
1.0.0initial version

Author

Allan CORNET