Extracting first element of multiple arrays within a cell

8 Ansichten (letzte 30 Tage)
uzzi
uzzi am 8 Nov. 2022
Verschoben: Voss am 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?

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Argument Definitions finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by