Calendar date to Day of the year
% This function will convert the calendar date to Julian Date.
%
% For example: suppose I have a date from a leap year such as 1st March
% 1904.
% The corresponding Julian Date of the calender date will be 61. Similarly,
% if I have a date of 1st March 1905 from a regular year, the Julian Date
% will be 60.
%
% Input: date: it is an array with three columns. The first, second and
% third column corresponds to year, month and day respectively.
%
% For example: Col.1 Col.2 Col.3
% Year Month Day
%
% date= 1904 3 1
% 1905 3 1
%
% Output: jd: values in the rows indicates the Julian date of every
% elements of the date input vector.
%
%
% Please Note that in this function there are two .mat file namely
% "leap_year" and "normal_year". Keep it in the same folder of the data
% analysis for working of this code.
引用格式
Pankaj Dey (2024). Calendar date to Day of the year (https://www.mathworks.com/matlabcentral/fileexchange/63642-calendar-date-to-day-of-the-year), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
平台兼容性
Windows macOS Linux类别
- MATLAB > Language Fundamentals > Data Types > Dates and Time >
- MATLAB > Language Fundamentals > Data Types > Dates and Time > Calendar >
标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!date2julian/
版本 | 已发布 | 发行说明 | |
---|---|---|---|
1.0.0.0 | The files leap_year and normal_year are uploaded
|