필터 지우기
필터 지우기

question about the 'stuct' of matlab?

조회 수: 2 (최근 30일)
Ray Lee
Ray Lee 2014년 11월 24일
댓글: Ray Lee 2014년 11월 26일
Why the second one gives rise to empty struct?
s.a=1; s.b=2; s.c={}
s =
a: 1
b: 2
c: {}
s = struct('a',1,'b',2,'c',{})
s =
0x0 struct array with fields:
a
b
c

채택된 답변

per isakson
per isakson 2014년 11월 24일
편집: per isakson 2014년 11월 24일
That's the way the function struct is designed to work. See struct, Create structure array "[...]If value is an empty cell array {}, then s is an empty (0-by-0) structure."
  댓글 수: 4
Guillaume
Guillaume 2014년 11월 24일
편집: Guillaume 2014년 11월 24일
If you do want to assign an empty cell array to a field of a structure using the struct function, you need to wrap that empty cell array into a cell array:
s = struct('a', 1, 'b', 2, 'c', {{}})
s =
a: 1
b: 2
c: {}
For that matter, even if the cell array is not empty you still need to wrap it to assign it to a scalar structure, otherwise the elements of the cell arrays are just distributed over an array of structs.
Ray Lee
Ray Lee 2014년 11월 26일
good solution.
in my code, I checked if s.c is empty. if not, the code makes some processing using the parameters in s.c

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by