Have you tried using:
create date from three column vectors
7 ビュー (過去 30 日間)
古いコメントを表示
Hello everyone,
I have three column vectors. The first one is the number of the day (double vector), the second one is the name of the month(cell vector eg. March) and the third one is the year (double vector).
How can I create a date combining these three vectors in format 2018-03-01?
Thank you Vanessa
回答 (1 件)
Aletta Wilbrink
2018 年 4 月 24 日
編集済み: Aletta Wilbrink
2018 年 4 月 24 日
Is this wat you want?
m = datevec(month,'mmmm');
d = datetime(year,m(2),day);
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Dates and Time についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!