Add one year to date

조회 수: 34 (최근 30일)
Behrooz Daneshian
Behrooz Daneshian 2023년 1월 5일
댓글: Steven Lord 2023년 1월 5일
Hi all,
Assume we have a date character='2022-01-05". What is the simplest way to add one year to that?

채택된 답변

Bora Eryilmaz
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)
d = datetime
05-Jan-2022
d1 = d + years(1)
d1 = datetime
05-Jan-2023 05:49:12
string(d1)
ans = "05-Jan-2023 05:49:12"
  댓글 수: 2
Behrooz Daneshian
Behrooz Daneshian 2023년 1월 5일
Thank you for your answer.
Steven Lord
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)
d = datetime
05-Jan-2022
d1 = d + years(1)
d1 = datetime
05-Jan-2023 05:49:12
d2 = d + calyears(1)
d2 = datetime
05-Jan-2023
daysPerYearDuration = days(years(1))
daysPerYearDuration = 365.2425

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by