Is it possible to check for existence of fields in nested structures with isfield in MATLAB 8.1 (R2013a)?

42 次查看(过去 30 天)
I have the following structure
a.b.c = 1;
I know it is possible to search for the nested
isfield(a.b,'c')
But I would like to check for the existence of the field 'c' even when I am not sure that the field 'b' exists, e.g.
isfield(a,'b.c');

采纳的回答

MathWorks Support Team
There is no MATLAB function to determine the existence of fields in nested structures. The only workaround is to check separately for the existence of 'b' and of 'c':
isfield(a, 'b') && isfield(a.b, 'c')

更多回答(1 个)

Steven Lord
Steven Lord 2022-12-16
Another approach that uses neither eval nor repeated calls to isfield is to use getfield.
a.b.c = 1;
isNestedField(a, 'b.c')
ans = logical
1
isNestedField(a, 'b.d')
ans = logical
0
isNestedField(1:10, 'a')
ans = logical
0
function tf = isNestedField(s, thefields)
fieldlist = split(thefields, '.');
try
getfield(s, fieldlist{:});
tf = true;
catch
tf = false;
end
end

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

标签

尚未输入任何标签。

产品


版本

R2012a

Community Treasure Hunt

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

Start Hunting!

Translated by