How to show timestamps in a uitable in Matlab GUI?

I tried it with this code.It does not work. T2 = uitable(f2,'Position',[50 200 900 70],'Data', timestamp);

 Accepted Answer

f = figure;
t = uitable(f,'Data',{datestr(now)},'Position',[50 200 900 70]);

2 Comments

If the problem is solved, please accept the answer.

Sign in to comment.

More Answers (0)

Categories

Tags

Asked:

on 29 Jun 2018

Commented:

on 30 Jun 2018

Community Treasure Hunt

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

Start Hunting!