date to number
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
Hi How to change the date with this format to number: 09-08-01 00:56:33
Thanks
3 件のコメント
Walter Roberson
2012 年 1 月 18 日
09-08-01 ... any of those could be a year, month, or day. You need to clarify which order the components are in.
bahare
2012 年 1 月 19 日
Jan
2012 年 1 月 19 日
What is the wanted number exactly? A datevec or a datenum?
回答 (1 件)
sunil anandatheertha
2012 年 1 月 19 日
Try using this for general purposes: a=clock;a(1),a(2),a(3),a(4),a(5),a(6)
Assuming the 09-08-01 00:56:33 to be,
day-month-year hrs:mins:secs, you can try using the following
a = '09-08-01 00:56:33'
day = str2num(a(1:2))
month = str2num(a(4:5))
year = ...
and so on. Hope this helped..
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!