cdfepoch
Convert date text or serial date number to CDF formatted dates
Syntax
E = cdfepoch(date)
Description
E = cdfepoch(date)
converts
the date, specified by date
, into a cdfepoch
object. date
must
be valid date value represented by text, as returned by datestr
,
or a serial date number, returned by datenum
. date
can
also be a cdfepoch
object.
When writing data to a CDF file using cdfwrite
,
use cdfepoch
to convert MATLAB® dates or
serial date numbers to CDF formatted dates. The MATLAB cdfepoch
object
simulates the CDFEPOCH
data type in CDF files.
To convert a cdfepoch
object into a MATLAB serial
date number, use the todatenum
function.
Examples
Convert the current time in serial date number format into a CDF epoch object.
% NOW function returns current time as serial date number dateobj = cdfepoch(now) dateobj = cdfepoch object: 11-Mar-2009 15:09:25
Convert the current time, which is returned by datestr
in
text form, into a CDF epoch object.
% DATESTR function returns text representing a date dateobj2 = cdfepoch(datestr(now)) dateobj2 = cdfepoch object: 11-Mar-2009 15:09:25
Convert the CDF epoch object into a serial date number.
dateobj = cdfepoch(now); mydatenum = todatenum(dateobj) mydatenum = 7.3384e+005
More About
Version History
Introduced before R2006a