Can someone help me implement a function that takes in a date string that has the form 'm/d/y' that produces the full name of the date string ex: 'march 3,1956'
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I kinda dont know where to start on this one.
0 Kommentare
Antworten (1)
Azzi Abdelmalek
am 21 Okt. 2013
Bearbeitet: Azzi Abdelmalek
am 21 Okt. 2013
d='10/25/2013'
d1=datenum(d,'mm/dd/yyyy');
out=datestr(d1,'mmmm dd, yyyy')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Dates and Time 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!