Scilab Function
Last update : 30/10/2005
dday - Difference in days between several
dates
Calling Sequence
-
jd = dday(Q)
Parameters
-
Q
: The matrix Q contains the dates. Each row represents one date.
In the 1st column is the day, in the 2nd column the month and in the
3rd the year
-
jd
: Difference in days. jd is a column vector. If the date matrix
has N rows, jd has N-1 rows.
Description
-
A very usefull tool, for example the calcualtion of celebration
days, bioryhms etc. You can check the results by use of the function
calcdat.
Examples
Q=[25,11,1965;28,12,1966;26,12,1967];
jdn=dday(Q);
disp(jdn);
See Also
calcdat
,
biorythm
,
Authors
-
Dr. Andreas Geissler geisslea@web.de