create day month and year
Mostrar comentarios más antiguos
I want to create three tables in Matlab Year,Month and Day and then concatenate into one column so that
1970 1 1
1970 1 2
.
.
.
1970 12 1
1 comentario
Stephen23
el 2 de Sept. de 2016
Azzi Abdelmalek's answer is the fastest, neatest, and best solution to this question.
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 2 de Sept. de 2016
d1=datenum('01-01-1971','dd-mm-yyyy')
d2=datenum('31-12-1971','dd-mm-yyyy')
d=datevec(d1:d2)
d=d(:,1:3)
Categorías
Más información sobre Language Fundamentals en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!