Add one year to date

33 vues (au cours des 30 derniers jours)
Behrooz Daneshian
Behrooz Daneshian le 5 Jan 2023
Commenté : Steven Lord le 5 Jan 2023
Hi all,
Assume we have a date character='2022-01-05". What is the simplest way to add one year to that?

Réponse acceptée

Bora Eryilmaz
Bora Eryilmaz le 5 Jan 2023
Modifié(e) : Bora Eryilmaz le 5 Jan 2023
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 commentaires
Behrooz Daneshian
Behrooz Daneshian le 5 Jan 2023
Thank you for your answer.
Steven Lord
Steven Lord le 5 Jan 2023
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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by