uisetdate2(varargin​)

版本 1.7.0.0 (31.0 KB) 作者: Sundeep
Interactive date selection. This function is based on MATLAB's built in 'calendar' function
546.0 次下载
更新时间 2015/3/5

查看许可证

SYNTAX:
outdate = uisetdate2 : Opens an interactive date selection GUI. This
function suspends execution until date selection is complete or
cancelled. Returns a 1-by-3 partial date vector 'outdate' containing
the selected year, month, and day as its respective elements.
outdate = uisetdate2(<Property>, <Value>, ...): Allows the user to
specify property/value pairs
PROPERTY/VALUE PAIRS
'MIN_YEAR', <1>: The minimum selectable year is specified. It should
not be less than 1.

'MAX_YEAR', <9999>: The maximum selectable year is specified. It should
not be greater than 9999, and should always be greater than or equal to
MIN_YEAR.

'StartingDate', <[]>: The starting date can be specified as a
date vector (or a partial date vector of three elements containing
year, month, and day). This date will be set when the interface is
launched. If the year corresponding to this StartingDate is outside the
range [MIN_YEAR, MAX_YEAR] then the year field of the date
vector is limited to MIN_YEAR or MAX_YEAR, as the case may be. It is
also possible to specify N date vectors to be selected as an N-by-3
(partial date vector) or N-by-6 (full date vector) matrix.

'MULTI_SELECT', <false>: If set to true, the user can select multiple
dates interactively. The return value is then an N-by-3 matrix of
partial date vectors where N is the number of dates selected.

引用格式

Sundeep (2024). uisetdate2(varargin) (https://www.mathworks.com/matlabcentral/fileexchange/32526-uisetdate2-varargin), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Dates and Time 的更多信息
标签 添加标签
致谢

参考作品: uisetdate, UIGETDATE

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.7.0.0

Modified to work with R2014a onwards

1.6.0.0

Modified to work with changes in R2014a onwards.

1.5.0.0

Minor bugfix

1.2.0.0

Fixed bug that surfaced when trying to select the dates common to a single day in the multi-select mode. Selecting Mondays would select Sundays, selecting Tuesdays would select Mondays, and so on.

1.1.0.0

Minor documentation update and other changes

1.0.0.0