% Purpose % converts an array of time which reference to a given basetime into % YYYYMMDDhhmmss.fff time representation. (This is reverse function % of totarray19.) % % Synopsis % time_array = mexeps('array19tot',time,units,basetime) % % Description % It returns time into an array in the form of YYYYMMDDhhmmss.fff. % The input units indicates the input time array units reference % to the basetime. The basetime must be specified in the form of % YYYYMMDDhhmmss.fff. % % Examples % Convert input time to a time with units of 'hours'. % % in_time = [0; 1; 2] % out_time = mexeps('array19tot',in_time,'hours',19941005000000); % % out_time will be [19941005000000; 19941005010000; 19941005020000] % % See Also % totarray19, totarray, totstr %