Convert cell array into array

5 vues (au cours des 30 derniers jours)
Valerio Gianforte
Valerio Gianforte le 28 Fév 2020
Hi Everyone,
I have a cell array 12x5 where each element is datetime array. Someone knows how to convert cell array into datetime array? To be clearer I would like to obtain an array with size 1472x1 . Thanks.
12×1 cell array
{125×1 datetime}
{113×1 datetime}
{125×1 datetime}
{121×1 datetime}
{125×1 datetime}
{121×1 datetime}
{125×1 datetime}
{125×1 datetime}
{121×1 datetime}
{125×1 datetime}
{121×1 datetime}
{125×1 datetime}

Réponse acceptée

Bhaskar R
Bhaskar R le 28 Fév 2020
result = cellfun(@vertcat, vertcat(your_array{:}))
  3 commentaires
Bhaskar R
Bhaskar R le 28 Fév 2020
vertcat(time_date{:}) % try this
Valerio Gianforte
Valerio Gianforte le 28 Fév 2020
Ok, now it does work. Thank you so much.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by