datetime InputFormat error in R2021a but works in R2017b ?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dave
am 28 Aug. 2021
Kommentiert: Star Strider
am 25 Feb. 2023
Hello, using datetime in R2021a brings an error while the same task works in R2017b, Is there a way to fix the issue in the newer version?
b=string('2004Q1');
In R2017b
c=datetime(b,'InputFormat','yyyyQQ')
c =
datetime
01-Jan-2004
In R2021a
c= datetime(b,'InputFormat','yyyyQQ')
Error using datetime (line 647)
Unable to convert '2004Q1' to datetime using the format 'yyyyQQ'.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 28 Aug. 2021
That seems to have changed between releases. In R2021a, it’s necessary to use 'QQQ' to designate ‘long format’ quarters —
b=string('2004Q1');
c= datetime(b,'InputFormat','yyyyQQQ')
.
1 Kommentar
Star Strider
am 28 Aug. 2021
As always, my pleasure!
Yes. I linked to them in my Answer. (At least I believe that’s the information you want. If it isn’t, post back with a description, and I’ll look again.)
.
Weitere Antworten (1)
Haiqin Liu
am 25 Feb. 2023
I tried but it still won't work: Unable to convert '2004Q4' to datetime using the format 'yyyyQQQ'.
1 Kommentar
Siehe auch
Kategorien
Mehr zu Calendar finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!