In my h188a.mat file, the 1st column represents dates. It is showing the value. How do I see the actual dates?

 採用された回答

Sudhakar Shinde
Sudhakar Shinde 2020 年 10 月 9 日
編集済み: Sudhakar Shinde 2020 年 10 月 9 日

1 投票

you can use 'datestr ' function to see the actual date:
Here is the example snap shows for your first number converted into date '14-Jun-1977'.
dt = datestr(d(:,1));

その他の回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 10 月 9 日

0 投票

Try this
dt = datetime(d(:,1), 'ConvertFrom', 'datenum')

カテゴリ

ヘルプ センター および 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