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'
2 ビュー (過去 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!