Extracting first element of multiple arrays within a cell

7 vues (au cours des 30 derniers jours)
uzzi
uzzi le 8 Nov 2022
Déplacé(e) : Voss le 8 Nov 2022
Hello,
I have a cell name zz with 1x6 of datetime . And inside of zz are with YYYY-MM-DD hh:mm:ss.SSS forma. I want to create a variabe which consist of the first elements datetime value of zz of all 6 columns. I am trying and I am stucked with it. Can someone help me?

Réponse acceptée

Jan
Jan le 8 Nov 2022
result = cellfun(@(c) c(1), zz)
  6 commentaires
uzzi
uzzi le 8 Nov 2022
Thank you. It works.
Jan
Jan le 8 Nov 2022
Déplacé(e) : Voss le 8 Nov 2022
As far as I understood, this is wanted: [zz{1}(1), zz{2}(1), zz{3}(1), etc.]

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by