Add one year to date
조회 수: 34 (최근 30일)
이전 댓글 표시
Hi all,
Assume we have a date character='2022-01-05". What is the simplest way to add one year to that?
댓글 수: 0
채택된 답변
Bora Eryilmaz
2023년 1월 5일
편집: Bora Eryilmaz
2023년 1월 5일
You can use the datetime and years commands to do what you want:
date = '2022-01-05';
d = datetime(date)
d1 = d + years(1)
string(d1)
댓글 수: 2
Steven Lord
2023년 1월 5일
In this case you probably want to use calyears (to add 1 calendar year) instead of years (which adds 365.2425 days.)
date = '2022-01-05';
d = datetime(date)
d1 = d + years(1)
d2 = d + calyears(1)
daysPerYearDuration = days(years(1))
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calendar에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!