Creating a time vector
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Silly question:
How do I create a time vector from scratch, say beginning in 1981 and ending in 2010?
Thanks
Akzeptierte Antwort
Jan
am 8 Jul. 2013
It depends on what a "time vector" is. Perhaps a datenum vector with a step size of days?
v = datenum(1981, 1, 1):datenum(2010, 11, 31);
A similar approach works for a stepsize of seconds or hours etc.
3 Kommentare
pruth
am 21 Mai 2018
hi, and what if I want this time vector with 1 min interval.? how to make it possible?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Time Series Objects finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!