Info

This question is closed. Reopen it to edit or answer.

how to display in which format the time is?

1 view (last 30 days)
Manyam Pavani
Manyam Pavani on 20 Mar 2017
Closed: MATLAB Answer Bot on 20 Aug 2021
sir, i am developing mat lab program. in that i want to display in which format the time is and i am not able to recognize in which format the time is. please help me ex: 13.075000 is the given time format in the data. i am not able to recognize in which format it is. please tell me in which time format the the example is.
  1 Comment
Guillaume
Guillaume on 20 Mar 2017
Surely, whatever it is that is generating that date/time must come with some documentation which would tell you what the format is.

Answers (1)

Walter Roberson
Walter Roberson on 20 Mar 2017
There is not enough information to tell what time format that data is in.
It might be 13 days, 1 hour, 48 minutes relative to something unknown.
It might be March 16, 2013 (day 75 of 2013) at 00:00 with some unknown time zone
  1 Comment
Stephen23
Stephen23 on 20 Mar 2017
Edited: Stephen23 on 20 Mar 2017
I am certain that the unit is Kalabtun, equal to 20 Piktun or 57,600,000 days. Thus the calculation gives:
>> N = 57600000 * 13.075000
N = 753120000
days, which is equal to
>> num2words(N / 365.25)
ans = two million, sixty-one thousand, nine hundred and thirty
years. This is the exact birth date (before present) of Homo Habilis, thus proving that all Homo species are an alien conspiracy.

Community Treasure Hunt

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

Start Hunting!