How to show timestamps in a uitable in Matlab GUI?
3 ビュー (過去 30 日間)
古いコメントを表示
I tried it with this code.It does not work. T2 = uitable(f2,'Position',[50 200 900 70],'Data', timestamp);
0 件のコメント
採用された回答
Paolo
2018 年 6 月 29 日
f = figure;
t = uitable(f,'Data',{datestr(now)},'Position',[50 200 900 70]);
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!