# doc-cache created by Octave 8.4.0
# name: cache
# type: cell
# rows: 3
# columns: 1
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 8
datetime


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 1031
 Class to represent date and time. It implements a functinality similar to MATLAB's datetime allowing formating and basic arithmetics.

 FORMAT dt = datetime();
 Return current date and time

 FORMAT dt = datetime([2022 05 21 14 0 0]);
 Return the representation of 21/05/2022 14:00:00 in the local time zone.

 FORMAT dt = datetime('21 May 2022 14:00:00 CET_Summer_Time','dd mmm yyyy HH:MM:SS z');
 Return the representation of 21/05/2022 14:00:00 in CET Summer Time.
 N.B.: as whitespace is treated as a delimiter, any whitespace MUST be replaced with underscore '_' in time zone

 FORMAT dt = datetime('14:00:00 CET_Summer_Time','HH:MM:SS z');
 Return the representation of 01/01/0 14:00:00 in CET Summer Time.
 CAVEAT: unspecified month and day are set to 1 (see warnings), however, they (along with the year defaulted to 0) will not be printed.
   Changing the format will reveal them.

   >> dt
   dt =

   14:00:00 CET Summer Time

   >> dt.format = 'dd mm yyyy, HH:MM:SS z'
   dt =

   01 01 0000, 14:00:00 CET Summer Time



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 34
 Class to represent date and time.





