CodeCogs - An iteractive open source Numerical library Welcome... Login
CodeCogs
shopping cart
OSXWindowsLinux
Search CodeCogs
Numerical Components

Valid RSS

UnitsDate

day

Available under GPL (Free) and Commercial licence
get a GPL licence
COST (GBP)
this unit 1.17
sub units 1.56
add a commercial licence to your cart
0
viewed 1944 times and licensed 22 times

Extracts the day from a serial Julian date. Excel: DAY

Further Info Controller: CodeCogs  Contact Controller
+View version details
Contents hide toc
buy now     get GPL     add to cart

Interface

#include <codecogs/units/date/day.h>

using namespace Units::Date;

int day (int nDate, calendar dateSystem=cal_Gregorian)[inline]
Extracts the day from a serial Julian date. Excel: DAY

Function Documentation

 
intdayintnDate
calendardateSystem = cal_Gregorian )[inline]
Returns the day of the month contained within nDate, as an integer ranging from 1 to 31 (inclusive).
Example 1:
#include <stdio.h>
#include <codecogs/units/date/day.h>
using namespace Units::Date;
 
int main()
{
  printf("\n The day is %d", day(1741667));              // The day is 2
  printf("\n The day is %d", day(1741667, cal_Julian));  // The day is 4
  return 0;
}

Note:
It may be faster to simply use dateYMD if you also need the year and month from a same serial Julian date.
Parameters:
nDateis a serial number of days from 24 November 4714 BC (1 January 4713BC in the Julian Calendar) - also known as the Julian Period.
dateSystemselects which date system should be used (see constants):
Authors:
Will Bateman (Sep 2004)
Source Code:

To view or download source code you need either a GPL or Commercial Licence.

buy now     get GPL     add to cart

Not a member, then Register with CodeCogs. Already a Member, then Login.


Page Comments

Format Excel Equations

  You must login to leave a messge


Last Modified: 18 Oct 07 @ 17:07     Page Rendered: 2010-03-13 16:38:51

Valid CSS!   Valid XHTML 1.0 Transitional