CL_dat_mjd2cjd — Modified Julian Date to CNES Julian date
cjd = CL_dat_mjd2cjd(mjd)
The fractional part of cjd (cjd-int(cjd)) gives the time of the day as a decimal fraction of one day with 0.5 representing midday UT.
Modified Julian day (Julian date - 2400000.5) (1xN)
CNES Julian day (number of fractionnal days since January 1st 1950) (1xN)
1 Mecanique spatiale, CNES - Cepadues 1995, Chapitre 3, section 3.3.3 Les années
mjd=[53282.45687,53283.26789]; cjd = CL_dat_mjd2cjd(mjd); mjd2 = CL_dat_cjd2mjd(cjd);