| Financial Toolbox | ![]() |
Syntax
datedisp(NumMat, DateForm) CharMat = datedisp(NumMat, DateForm)
NumMat |
Numeric matrix to display |
DateForm |
(Optional) Date format. See datestr for available and default format flags. |
Description
datedisp(NumMat, DateForm)
displays a matrix with the serial dates formatted as date strings, using a matrix with mixed numeric entries and serial date number entries. Integers between datenum('01-Jan-1900') and datenum('01-Jan-2200') are assumed to be serial date numbers, while all other values are treated as numeric entries.
CharMat is a character array representing NumMat. If no output variable is assigned, the function prints the array to the display.
Examples
NumMat = [730730, 0.03, 1200 730100;
730731, 0.05, 1000 NaN]
NumMat =
1.0e+05 *
7.3073 0.0000 0.0120 7.3010
7.3073 0.0000 0.0100 NaN
datedisp(NumMat)
01-Sep-2000 0.03 1200 11-Dec-1998
02-Sep-2000 0.05 1000 NaN
See Also
datestr
| dateaxis | datefind | ![]() |