Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
JULDAY.M
Package: easy.zip [view]
Upload User: sfyaiting
Upload Date: 2009-10-25
Package Size: 320k
Code Size: 1k
Category:
GPS develop
Development Platform:
Matlab
- function jd = julday(y,m,d,h)
- % JULDAY Conversion of date as given by
- % y ... year (four digits)
- % m ... month
- % d ... day
- % h ... hour and fraction hereof
- % The conversion is only valid in the time span
- % from March, 1, 1900 to February, 28, 2100
- % For further information see
- % Meeus, Jean (1991) Astronomical Algorithms,
- % Willmann-Bell, Richmond, Virginia, p. 59--62
- % Written by Kai Borre
- % February 14,2001
- if m <= 2, y = y-1; m = m+12; end
- jd = floor(365.25*(y+4716))+floor(30.6001*(m+1))+d+h/24-1537.5;
- % mjd = jd-2400000.5;
- %%%%%%% end julday.m %%%%%%%%%%%%