| Contents | Index |
NumDays = days360psa(StartDate, EndDate)
StartDate | Row vector, column vector, or scalar value in serial date number or date string format. |
EndDate | Row vector, column vector, or scalar value in serial date number or date string format. |
Either input can contain multiple values, but if so, the other must contain the same number of values or a single value that applies to all.
NumDays = days360psa(StartDate, EndDate) returns a vector or scalar value representing the number of days between StartDate and EndDate based on a 360-day year (that is, all months contain 30 days). If EndDate is earlier than StartDate, NumDays is negative.
Under this payment convention all months contain 30 days. In both leap and non-leap years, if the StartDate is the last day of February, this day is considered to be day 30 of the month.
Example 1. Use this convention to find the number of days in between the last day of February and the first day of March during a leap year.
StartDate = '29-Feb-2000';
EndDate = '1-Mar-2000';
NumDays = days360psa(StartDate, EndDate)
NumDays =
1
Example 2. Use this convention to find the number of days in between the last day of February and the first day of March during a non-leap year.
StartDate = '28-Feb-2002';
EndDate = '1-Mar-2002';
NumDays = days360psa(StartDate, EndDate)
NumDays =
1
As expected, the number of days in both cases is the same. The convention always assumes that the last day of February is the 30th day.
days360 | days360e | days360isda
View demos and recorded presentations led by industry experts.
Now On Demand
Network with industry peers and learn the latest applications of the leading software product for computational finance.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |