Calendar date to Day of the year

版本 1.0.0.0 (1.5 KB) 作者: Pankaj Dey
This function converts the calendar date to Julian Date.
118.0 次下载
更新时间 2018/3/29

查看许可证

% 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 版本兼容性
创建方式 R2016b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Dates and Time 的更多信息

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
The name of the file is changed to the current form.