Name

CL_dat_utc2tai — UTC to TAI conversion

Calling Sequence

   [cjdtai]=CL_dat_utc2tai(cjdutc)
   
   

Description

  • UTC to TAI conversion

    UTC / TAI correspondance is read in the global constant %CL_TAI_UTC (vector). You can modify the UTC / TAI correspondance by modifying the global constant %CL_TAI_UTC

    Note : TAI time is not defined until 1972 (cjd=8035 or later); if cjd is before 8035 output is equal to input parameters

  • Last update : 27/6/2008

Parameters

cjdutc:

CNES julian date in UTC time (1xN)

cjdtai:

CNES julian date in TAI time (1xN)

Authors

CNES - DCT/SB

See also

CL_dat_tai2utc

Examples

cjdutc=[21000:0.1:21001]';
[cjdtai]=CL_dat_utc2tai(cjdutc);