How to convert a cell array of datetime to an array of datetime
30 ビュー (過去 30 日間)
古いコメントを表示
Hi, Is there a simple way to convert a cell array of datetime to an array of datetime without using cellfun? My cell array looks like:
32×1 cell array
{[01-May-2018]}
{[01-May-2018]}
{[01-May-2018]}
{[01-May-2018]}
{[01-May-2018]}
{[01-May-2018]}
I would like it to be just an array of datetime. Thanks for any help.
0 件のコメント
採用された回答
Ameer Hamza
2018 年 5 月 29 日
Try this
array = [cellArray{:}];
[] symbol are necessary to form an array.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!