필터 지우기
필터 지우기

How to Convert milliseconds to dd:mm:yyyy hh:mm:ss?

조회 수: 42 (최근 30일)
Megha
Megha 2018년 5월 23일
답변: Megha 2018년 5월 23일
I have rows that contains 'gregorian' Date and time for each observation in milliseconds since 1970-01-01 00:00:00.0 UTC.
How can I convert this millisecond into dd:mm:yyyy hh:mm:ss?

채택된 답변

Andrei Bobrov
Andrei Bobrov 2018년 5월 23일
T = datetime(1970,1,1,0,0,0,0,'TimeZone','UTC','F','uuuu-MM-dd''T''HH:mm:ss.SSS Z');
addMS = milliseconds(cumsum([0;randi(2e8,10,1)]));
out = T + addMS;
  댓글 수: 1
Megha
Megha 2018년 5월 23일
@ Andrei Bobrov: yes thank you
it worked for me

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Megha
Megha 2018년 5월 23일
Well, I also got the solution from other google search results,
date = datestr(t/86400000 + datenum(1970,1,1));
Thank you @ Walter Roberson and @ Andrei Bobrov for spending your time on this.

Walter Roberson
Walter Roberson 2018년 5월 23일
You might be able to use datetime() with 'convertfrom', 'posixtime'
  댓글 수: 3
Walter Roberson
Walter Roberson 2018년 5월 23일
>> datetime(1504224000,'convertfrom','posixtime')
ans =
01-Sep-2017 00:00:00
Megha
Megha 2018년 5월 23일
@walter this is the same o/p that i fed to my i/p!
while running
int32(floor(86400 * (datenum('01-Sep-2017') - datenum('01-Jan-1970'))))
as given under the link in your answers!!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by