Clear Filters
Clear Filters

How to Access to Fields of a Non-scalar Struct?

3 views (last 30 days)
How can I create the 4-by-1 cell array D from the struct A?
A(1).B.C = 'a';
A(2).B.C = 'b';
A(3).B.C = 'c';
A(4).B.C = 'd';
D =
'a'
'b'
'c'
'd'

Accepted Answer

Walter Roberson
Walter Roberson on 12 Mar 2017
D = arrayfun(@(IDX) A(IDX).B.C, (1:numel(A)).', 'Uniform', 0);
This is the safest approach, as it will work for the case where there are fields in addition to B within A, where some other approaches would not.
But in the specialized case where B is the only field inside A, then
temp = cell2mat(struct2cell(A));
D = {temp.C}.';
  2 Comments
Rightia Rollmann
Rightia Rollmann on 12 Mar 2017
Thanks!
What does
.'
do for the code? I know ' operator, but I don't know .' operator.
Walter Roberson
Walter Roberson on 12 Mar 2017
.' is plain transpose. ' is conjugate transpose.
For arrays that are not numeric arrays, they come out the same, but I prefer to write .' to remove any ambiguity about whether I intend the transpose to be conjugate or not.

Sign in to comment.

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!