Review of all the ways to get the time in Octave:
1. The time command:
time ()
ans = 1.3482e+09
A number which is the current time as the number of seconds since the epoch. The epoch is referenced to 00:00:00 CUT (Coordinated Universal Time) 1 Jan 1970.
2. The clock command:
clock
Which returns the date 2012-09-20 21:46:12 in matrix format:
2012.0000 9.0000 20.0000 21.0000 46.0000 12.2778
3. The date command:
date ()
ans = 20-Sep-2012
4. The strftime (fmt, tm_struct) command
strftime ("%r (%Z) %A %e %B %Y", localtime (time ()))
ans = 09:52:42 PM (EDT) Thursday 20 September 2012
5. Use strftime to get yyyy-mm-dd hh:mm:ss format
strftime ("%Y-%m-%d %H:%M:%S", localtime (time ()))
ans = 2012-09-20 21:56:07
For a description of the meaning of the format modifiers (%r %Z ...) see here:
http://www.chemie.fu-berlin.de/chemnet/use/info/octave/octave_26.html