I have a structure within a structure (a nested structure), and am trying to add a field to that structure, what should I write?
1 次查看(过去 30 天)
显示 更早的评论
s.Field.(FieldName)=zeros(1,1);
Doesn't work...
0 个评论
回答(1 个)
Fabian Schadt
2017-3-23
编辑:Stephen23
2017-3-23
Hi Guy Nir,
actually there should be no problem.
s.Field.FieldName = zeros(1,1);
works ;-)
However, if you state your nested struct with brackets ->
s.Field.(FieldName),
then you access with (FieldName) a variable in your workspace. If this does not exist, you receive an error.
If brackets, then it would be like this:
FieldName = [];
s.Field.(FieldName) = zeros(1,1);
Hope I could help!
5 个评论
James Tursa
2017-3-23
编辑:James Tursa
2017-3-23
Works for me:
>> clear all
>> FieldName='valid'
FieldName =
valid
>> s.Field.(FieldName) = zeros(1,3)
s =
Field: [1x1 struct]
>> s.Field.valid
ans =
0 0 0
You should double check what the variable s really is. Are you sure it isn't maybe a cell array that contains structures, or something like that?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!