I would like to view the time of the day and date in the following format example (21/06/16-11:32) in a GUI. What is the command?

 Accepted Answer

datestr(now, 'dd/mm/yy-HH:MM')

1 Comment

to display this into GUI field,
date = datestr(now, 'dd/mm/yy-HH:MM');
set(handles.edit,'String',date);

Sign in to comment.

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!