Write one year date into a excel?

1 visualizzazione (ultimi 30 giorni)
If I want to write one year date into a excel, like year 2016. I have no idea how to code in matlab. Thanks
1/1/2016
1/2/2016
...
..
12/31/2016

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 13 Apr 2016
Modificato: Azzi Abdelmalek il 13 Apr 2016
out=datestr(datenum('01/01/2016')+datenum(0:365),'mm/dd/yyyy')
xlswrite('your_file.xlsx',out)
  6 Commenti
Andrei Bobrov
Andrei Bobrov il 13 Apr 2016
out=datestr(datenum('01/01/2016')+(0:365)','mm/dd/yyyy');

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Time Series Objects in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by