how to convert character data to double?

Hi all,
i have a char array that has these values below, which i want to get a bouble array of it.
01/04/2016
02/04/2016
03/04/2016
04/04/2016
.... %etc until
20/05/2016
Any help would be appreciated.
Thanks

 採用された回答

madhan ravi
madhan ravi 2018 年 11 月 3 日
編集済み: madhan ravi 2018 年 11 月 3 日

0 投票

Use
datenum() or datetime()
Example:
DateString = ['01/04/2016';'02/04/2016';'03/04/2016';'04/04/2016';'20/05/2016'];
formatIn = 'mm/dd/yyyy';
datenum(DateString,formatIn)
datetime(DateString)
Use datetime as suggested by sir Walter

3 件のコメント

Walter Roberson
Walter Roberson 2018 年 11 月 3 日
However in most cases we now recommend datetime instead of datenum.
madhan ravi
madhan ravi 2018 年 11 月 3 日
Thank you sir Walter
Lilya
Lilya 2018 年 11 月 4 日
Thank you so much it works! .. I do have another question I have also the attached figure data that I want to extract the specific rows from it depends on the dates those are represented as the first 8 column in the files.name stract. How can I use that? to get the finale files are from day 1 of April 2016 until 20th of May 2016. thanks for the help :)

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDates and Time についてさらに検索

タグ

質問済み:

2018 年 11 月 3 日

コメント済み:

2018 年 11 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by