How to show timestamps in a uitable in Matlab GUI?
조회 수: 1 (최근 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!