Counting the year in julian dates
1 次查看(过去 30 天)
显示 更早的评论
I need to ask for the hire date and current date of an employee, convert it to julian date, and spit out how many days they've worked there. I know how to figure out julian date in days. How do I take care of the year issue?
1 个评论
James Tursa
2012-11-13
My guess is you are confusing Julian Date with day-of-the-year. Can you please provide a specific example of inputs and desired output?
回答(1 个)
Tom W
2014-7-29
You don't need julian days, all you need is today() minus hire date (with format). Difference in days will be the output.
or
gregorian("ThisYear", "ThisMonth", "ThisDay") - gregorian(Yr1,Mo1,Day1);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!