Scilab Function
Last update : 28/10/2005
calcdat - Addition of days to one or several
dates
Calling Sequence
-
Qnew = calcdat(Q,anzday)
Parameters
-
Q
: Q is the date matrix. Every row represents a date. The 1st
column contains the days, the 2nd the months and the 3rd the
years
-
anzday
: scalar value, represents the number of days which should be
added to the dates in Q
-
Qnew
: result of adding days
Description
-
Aquite simple algorithm.
Examples
Q=[28,12,1966;25,11,1965;12,8,1999];
Qnew=calcdat(Q,15000);
disp(Q);
disp(Qnew);
See Also
dday
,
Authors
-
Dr. Andreas Geissler geisslea@web.de