datetime format issue?
Ältere Kommentare anzeigen
As a continuation of a previous question,
datelimits = datetime({'20080401', '20080402'}, 'InputFormat', 'yyyyMMdd');
outputs
datelimits =
1x2 datetime array
01-Apr-2008 02-Apr-2008
Although it should output
20080401 20080402
Please advise how to fix this issue so that it would output in the correct format.
Akzeptierte Antwort
Weitere Antworten (1)
datelimits = datetime({'20080401', '20080402'}, 'Format', 'yyyyMMdd')
1 Kommentar
alpedhuez
am 12 Mär. 2022
Kategorien
Mehr zu Dates and Time finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!