Name

CL_dat_tai2utc — TAI to UTC conversion

Calling Sequence

   [cjdutc]=CL_dat_utc2tai(cjdtai)
   
   

Description

  • TAI to UTC 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

cjdtai:

CNES julian date in TAI time (1xN)

cjdutc:

CNES julian date in UTC time (1xN)

Authors

CNES - DCT/SB

See also

CL_dat_utc2tai

Examples

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