Julian time and seconds
    3 次查看(过去 30 天)
  
       显示 更早的评论
    
Hi, I'm working with two time series with the time specified in Julian time. I need to work out the difference between the start time in each data set. Anyone know how?? Thanks D
1 个评论
  Jan
      
      
 2011-10-20
				Please post the format of your inputs and the wanted output. Are you talking of a DOUBLE vector or a cell string?
回答(1 个)
  Peter Perkins
    
 2017-9-21
        >> d1 = juliandate(datetime('today'))
d1 =
                 2458017.5
>> d2 = d1 + 1234
d2 =
                 2459251.5
>> between(datetime(d1,'ConvertFrom','juliandate'), datetime(d2,'ConvertFrom','juliandate'))
ans = 
  calendarDuration
   3y 4mo 16d
>> between(datetime(d1,'ConvertFrom','juliandate'), datetime(d2,'ConvertFrom','juliandate'),'days')
ans = 
  calendarDuration
   1234d
0 个评论
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!