Extracting first element of multiple arrays within a cell

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

result = cellfun(@(c) c(1), zz)

6 Comments

if i get it right and you just want to select values from this "table", its showing you on how to access them.
hello, i want to access of the first element from zz{1,1} to zz{1,6}.
should work with zz{1:6} or zz(1:6). the way matlab uses brackets etc confused me from time to time. best way to learn is to experiement
explaination would be nice as i didnt use that myself too yet sooooo. would love to know and others for sure too
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

Products

Asked:

on 8 Nov 2022

Moved:

on 8 Nov 2022

Community Treasure Hunt

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

Start Hunting!