Add one year to date
32 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Behrooz Daneshian
il 5 Gen 2023
Commentato: Steven Lord
il 5 Gen 2023
Hi all,
Assume we have a date character='2022-01-05". What is the simplest way to add one year to that?
0 Commenti
Risposta accettata
Bora Eryilmaz
il 5 Gen 2023
Modificato: Bora Eryilmaz
il 5 Gen 2023
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 Commenti
Steven Lord
il 5 Gen 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)
d1 = d + years(1)
d2 = d + calyears(1)
daysPerYearDuration = days(years(1))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Calendar in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!