Extracting first element of multiple arrays within a cell

7 views (last 30 days)
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?

Accepted Answer

Jan
Jan on 8 Nov 2022
result = cellfun(@(c) c(1), zz)
  6 Comments
Jan
Jan on 8 Nov 2022
Moved: Voss on 8 Nov 2022
As far as I understood, this is wanted: [zz{1}(1), zz{2}(1), zz{3}(1), etc.]

Sign in to comment.

More Answers (0)

Categories

Find more on Argument Definitions in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!