How to calculate (hh:mm:ss + minutes()) and show the all result in GUI table?

6 次查看(过去 30 天)
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
Thanks,
  4 个评论
snr matlb
snr matlb 2020-1-2
I tried as this way:
result(i,2) = hours(duration('08:00:00') + result(i,2))
However, by making hand-calculation, I get 60 as minute, then I adding it to the 08:00:00 and I find it as 09:00:00.
with above code, I get 1448 at GUI table instead of 09:00:00 in hh:mm:ss format.

请先登录,再进行评论。

回答(1 个)

Amit
Amit 2020-1-2
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
  1 个评论
snr matlb
snr matlb 2020-1-2
I need to use codes below to calculate the time and show in matlab GUI table.
for i = 1:10
result(i, 2) = duration('8:00:00') + minutes(result(i,2))
end
set(handles.uitable1, 'data', result)
for example; while i=1, result (i,2) = 72 then
I want to see at GUI table: duration('08:00:00') + minute(72) = 09:12:00.
But I get error as I mentioned above.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by