Convert date timestamp into Datenum

1 回表示 (過去 30 日間)
Life is Wonderful
Life is Wonderful 2019 年 8 月 13 日
編集済み: Life is Wonderful 2020 年 1 月 28 日
I want to convert date timestamp into one number

採用された回答

Guillaume
Guillaume 2019 年 8 月 13 日
a) You shouldn't be using datenum. They're completely obsolete and everything you could do with them, you can do with datetime, and more.
b) The way a number is stored and the way a number is displayed are two completely different things. You can change the way matlab displays numbers at the command window wth the format command. Note that this will in no way affect the actual number, nor will it affects the way it is exported in a text or excel file. Again, this only affects the display in the command window
>> dn = now;
>> format short %change the format. DOES NOT CHANGE what's into dn
>> dn
dn =
7.3765e+05
>> format long
>> dn
dn =
7.376506267945486e+05
>> format longg %You probably want this format
>> dn
dn =
737650.626794549
  4 件のコメント
Guillaume
Guillaume 2019 年 8 月 13 日
I can't see any equation and I've really no idea what you're asking now.
Life is Wonderful
Life is Wonderful 2019 年 12 月 7 日
Hi Guillaume,
Can you please look into the topic and help me please..
Thank you!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by