How to calculate (hh:mm:ss + minutes()) and show the all result in GUI table?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
for i = 1:10
result(i, 2) = 08:00:00 + minutes(result(i,2))
end
set(handles.uitable1, 'data', result)
**************************************************************
Then, I will show result which is global variable into GUI table. How can I calculate and show it in GUI table?
Normally, I use minutes to calculate but I want to show the exact time (hh:m:ss) in GUI table. I, now, show the minutes at GUI table as below. Below figure shows result at GUI table. I need to convert it to hh:mm:ss with above for-loop.
![Ekran Alıntısı.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/257854/Ekran%20Al%C4%B1nt%C4%B1s%C4%B1.png)
Thanks,
4 Commenti
Risposte (1)
Amit
il 2 Gen 2020
Use clock function to display current time on your gui :
I hope the below code will help you.
for i =1:10
time= clock;
if time(4)>12
hr = time(4)-12;
result(i,:)= [hr, time(5:6)];
else
result(i,:) = time(4:6);
end
pause(1)
set(handles.uitable1, 'data', ceil(result))
end
Vedere anche
Categorie
Scopri di più su Tables in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!