Write one year date into a excel?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2016년 4월 13일
편집: Azzi Abdelmalek
2016년 4월 13일
out=datestr(datenum('01/01/2016')+datenum(0:365),'mm/dd/yyyy')
xlswrite('your_file.xlsx',out)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!