How to show timestamps in a uitable in Matlab GUI?
1 view (last 30 days)
Show older comments
I tried it with this code.It does not work. T2 = uitable(f2,'Position',[50 200 900 70],'Data', timestamp);
0 Comments
Accepted Answer
Paolo
on 29 Jun 2018
f = figure;
t = uitable(f,'Data',{datestr(now)},'Position',[50 200 900 70]);
2 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!