How to combine three vectors to a single date vector

1 次查看(过去 30 天)
Dear all,
currenty i am analyzing a dataset that has three vectors represenenting the date [year month date]. For example:
2000 1 1
2000 1 4
2000 1 9
2000 1 16
2000 1 17
I wish to combine these three arrays to single vector representing the date. Can anyone help me with this?

采纳的回答

madhan ravi
madhan ravi 2020-6-12
datetime(Year,Month,Day)

更多回答(1 个)

Michiel Smit
Michiel Smit 2020-6-12
Nevermind, I already found a solution:
dates = datenum([year,month,day]);
datetick('x','mmmyy')

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by