儒略日Juliandate计算matlab

更新时间:2023-06-29 06:45:35 阅读: 评论:0

儒略日 Juliandate 计算 matlab
儒略日 Juliandate 计算 matlab
thanksto:
在天文学有一种连续纪日的儒略日(JD),它以儒略历公元前4713年1月1日的GMT正午为第0日的开始。还有一种简化儒略日(MJD):
MJD=JD-2400000.5MJD的第0日是从公历1858年11月17日的GMT零时开始的。
需要注意:儒略历公元前4713年1月1日相当于公历公元前4713年11月24日。
儒略日(Julianday)是指由公元前4713年1月1日,协调世界时中午12时开始所经过的天数,多为天文学家采用,用以作为天文学的单一历法,把不同历法的年表统一起来。
儒略日是一种不用年月的长期纪日法,简写为JD。是由法国学者JophJustusScliger(1540-1609)在1583年所创,这名称是为了纪念他的父亲--意大利学者JuliusCaesarScaliger(1484-1558)。
儒略日的起点订在公元前4713年(天文学上记为-4712年)1月1日格林威治时间平午(世界时12:00),即JD0指定为4713B.C.1月1日12:00UT到4713B.C.1月2日12:00UT的24小时。每一天赋予了一个唯一的数字,顺数而下,如:1996年1月1日12:00:00的儒略日是2450084。这个日期是考虑了太阳、月亮的运行周期,以及当时收税的间隔而订出来的。JophScliger定义儒略周期为7980年,是因28、19、15的最小公倍数为28×19×15=7980。其中:
28年为一太阳周期(solarcycle),经过一太阳周期,则星期的日序与月的日序会重复。
19年为一太阴周期,或称默冬章(Metoniccycle),因235朔望月=19回归年,经过一太阴周期则阴历月年的日序重复。
生命中无法承受之轻15年为一小纪(indictioncycle),此为罗马皇帝君士坦丁(Constantine)
所颁,每15年评定财产价值以供课税,成为古罗马用的一个纪元单位,
故以7980年为一儒略周期,而所选的起点公元前4713年,则是这三个循
环周期同时开始的最近年份。
以儒略日计日是为方便计算年代相隔久远或不同历法的两事件所间隔的日
数。
由于儒略日数字位数太多,国际天文学联合会于1973年采用简化儒略日
法学考研科目(MJD),其定义为MJD=JD-2400000.5。MJD相应的起点是1858年11月17日世
界时0时。
---
儒略日的计算
儒略日=K-32075+1461*(I+4800+(J-14)/12)/4+367*(J-2-(J-14)/12*12)/12-3*((I+4900+(J-
14)/12)/100)/4typejuliandatefunctionjd=juliandate(varargin)
%JULIANDATECalculateJuliandate.
%JD=JULIANDATE(V)convertsoneormoredatevectorsVintoJuliandate
chris farley
%JD.InputVcanbeanM-by-6orM-by-3matrixcontainingMfullor
ction什么意思
%partialdatevectors,respectively.JULIANDATEreturnsacolumnvector
%ofMJuliandateswhicharethenumberofdaysandfractionssincenoon
%UniversalTimeonJanuary1,4713BCE.
%
%Adatevectorcontainssixelements,specifyingyear,month,day,hour,
%minute,andcond.Apartialdatevectorhasthreeelements,specifying %year,month,andday.EachelementofVmustbeapositivedouble %precisionnumber.
%
%JD=JULIANDATE(S,F)convertsoneormoredatestringsStoJuliandate %JDusingformatstringF.Scanbeacharacterarraywhereeach %rowcorrespondstoonedatest
ring,oronedimensionalcellarrayof %strings.JULIANDATEreturnsacolumnvectorofMJuliandates,whereMis %thenumberofstringsinS.
%
%AllofthedatestringsinSmusthavethesameformatF,whichmustbe %compodofdateformatsymbolsaccordingtoDATESTRhelp.Formatswith %'Q'arenotacceptedbyJULIANDATE.
%
%Certainformatsmaynotcontainenoughinformationtocomputeadate %number.Inthocas,hours,minutes,andcondsdefaultto0,days %defaultto1,monthsdefaulttoJanuary,andyearsdefaulttothe %currentyear.Datestringswithtwocharacteryearsareinterpretedto %bewithinthe100yearscenteredaroundthecurrentyear.
maintain用法%
mirandalambert%JD=JULIANDATE(Y,MO,D)andJD=JULIANDATE([Y,MO,D])returntheJulian %dateforcorrespondingelementsoftheY,MO,D(year,month,day) %arrays.Y,MO,andDmustbearraysofthesamesize(oranycanbea %scalar).
%
%JD=JULIANDATE(Y,MO,D,H,MI,S)andJD=JULIANDATE([Y,MO,D,H,MI,S]) %returntheJuliandatesforcorrespondingelementsoftheY,MO,D,H,MI,S %(year,month,day,hour,minute,cond)arrays.Thesixargumentsmustbe %arraysofthesamesize(oranycanbeascalar).
%
产品经理设计培训%Limitations:
%Thisfunctionisvalidforallcommonera(CE)datesintheGregorian %calendar.
%
%ThecalculationofJuliandatedoesnottakeintoaccountleapconds. %
%Examples:
%
%CalculateJuliandateforMay24,2005:
%jd=juliandate('24-May-2005','dd-mmm-yyyy') %
%CalculateJuliandateforDecember19,2006:
%jd=juliandate(2006,12,19)
%
%CalculateJuliandateforOctober10,2004at12:21:00pm: %jd=juliandate(2004,10,10,12,21,0) 电大英语考试答案
%
%SeealsoDECYEAR,LEAPYEAR,MJULIANDATE.
%Copyright2000-2006TheMathWorks,Inc.
%$Revision:1.1.6.1$$Date:2006/04/2017:45:01$ [yearmonthdayhourminc]=datevec(datenum(varargin{:})); fork=length(month):-
1:1if(month(k)=2)%january&februaryyear(k)=year(k)-1.0; month(k)=month(k)+12.0;
endendjd=floor(365.25*(year+4716.0))+floor(30.6001*(month+1.0))+2
.0-. end of the line
floor(year/100.0)+floor(floor(year/100.0)/4.0)+day-1524.5+. (hour+min/60+c/3600)/24;
例如:
formatlongg;juliandate(now()) ans=
2455062.99134494

本文发布于:2023-06-29 06:45:35,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/90/161298.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:儒略   历法   开始   课税   简化
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图