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 次查看(过去 30 天)
显示 更早的评论
I kinda dont know where to start on this one.
0 个评论
回答(1 个)
Azzi Abdelmalek
2013-10-21
编辑:Azzi Abdelmalek
2013-10-21
d='10/25/2013'
d1=datenum(d,'mm/dd/yyyy');
out=datestr(d1,'mmmm dd, yyyy')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!