UICAL is an implementation of a calendar date picker which uses the power of the nested functions.
UICAL is easily customizable in terms of colors and even languages. In fact you can easily add you own set of languages.
Enjoy !
RES = UICAL() displays the calendar in English with the today's date
selected. RES is a 3-elements vector containing the year, month and day
the user selected.
RES = UICAL(SDATE) displays the calendar in English with SDATE date
selected. SDATE can be either a serial date number or a 3-elements vector
containing year, month and day in this order.
RES = UICAL(SDATE,LANG) displays the calendar in the language specified by
LANG with SDATE date selected.
Default available languages are English and French but you can easily add
your own by editing the SET_LANGUAGES nested function at the bottom of this
file.
Customization Tips:
You can customize the colors of the calendar by editing the "Colors" section
at the begining of the main function. See comments there for more details.
Examples:
myDate = uical()
myDate = uical(now+7)
myDate = uical([1980 7 24],'fr')
Olivier (2021). Yet Another Calendar (https://www.mathworks.com/matlabcentral/fileexchange/15913-yet-another-calendar), MATLAB Central File Exchange. Retrieved .
Inspired: Yahoo! Finance Data Loader
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
Had to make some minor tweaks to make it compatible with R2019B.
daysN and monthsN defined in set_language was identified as error from linter. Changed set_language to function returning months and days as outputs.
Great Tool. Is there any way to change the cursor symbol to an arrow, when selecting the right day?
Thanks, Sören
Thanks for this. It was a very handy tool!
Sam