get a field value from all elements of a structure

조회 수: 91 (최근 30일)
Mike D.
Mike D. 2021년 2월 22일
댓글: Adam Danz 2021년 2월 22일
If I have a structure s with a field A(1) and A(2) and A(3), where each of these A fields has a field B, I can type:
s = struct
s.A(1).B = 351;
s.A(2).B = 879;
s.A(3).B = 229;
s.A(4).B = 654;
If I type s.A.B it will show all four values as four separate "ans", but if I type temp = s.A.B it only grabs the first value. How do I get all of these values of B into a double array? I could write a for-loop:
for i = 1 : size(s.A,2)
temp(i) = s.A(i).B;
end
Is there a one-liner?

채택된 답변

Adam Danz
Adam Danz 2021년 2월 22일
  댓글 수: 2
Mike D.
Mike D. 2021년 2월 22일
Thanks, I knew there must be an easy way.
Adam Danz
Adam Danz 2021년 2월 22일
Good intuition. :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by