How do I assign a value to a field in a multi-level struct when the field name is contained in a variable?
조회 수: 4 (최근 30일)
이전 댓글 표시
I have a multi-level struct and I would like to change the value for a field in one of the lower levels. The path to the field name is stored in a char array. For example,
>> fieldToChange = 'levelA.levelB.levelC.myField';
Usually, when the name of a field is stored in a variable, I can access it using parenthetical notation:
>> fieldName = 'levelA';
>> myStruct.(fieldName) = 0;
However, when I use that notation with 'fieldToChange', I see the error below:
>> fieldToChange = 'levelA.levelB.levelC.myField';
>> myStruct.(fieldToChange) = 0;
Reference to non-existent field 'levelA.levelB.levelC.myField'
How do I access the field at the location stored in 'fieldToChange'?
채택된 답변
MathWorks Support Team
2019년 10월 22일
One way to do this is to use the 'subsasgn' function, which can be used to assign a value to a subscripted field. This is demonstrated in the attached example and explained below.
For this case, where there are multiple levels of the structure, create a compound indexing expression, or an array of structures, for the input parameter, 'S'. Each structure in the array must contain the type of subscript and field name. For more information on this parameter, please see the documentation page for 'subsasgn':
To do this, first split 'fieldToChange' into a cell array using 'strsplit' and splitting on the period delimiter:
>> fieldToChangeCell = strsplit(fieldToChange, '.');
Next, create an anonymous function, 'makeSParam', that takes in a field name, 'x', and places it into a structure for the 'S' parameter format of 'subsasgn':
>> makeSParam = @(x)struct('type','.','subs',x);
You can then apply this function to each cell in 'fieldToChangeCell' using 'cellfun', resulting in the compound indexing expression, 'idx':
>> idx = cellfun(makeSParam, fieldToChangeCell);
Finally, use 'subsasgn' to set the field to the desired value of 0:
>> myStruct = subsasgn(myStruct, idx, 0);
댓글 수: 1
Stephen23
2023년 1월 17일
"create an anonymous function, 'makeSParam', that takes in a field name, 'x', and places it into a structure for the 'S' parameter format of 'subsasgn':"
The standard MATLAB approach is to simply call the inbuilt SUBSTRUCT() function:
추가 답변 (1개)
Stephen23
2023년 1월 13일
편집: Stephen23
2023년 1월 17일
You do not need any obfuscated fiddling around with SUBSASGN().
The standard MATLAB approach is to use SETFIELD() / GETFIELD():
F = 'levelA.levelB.levelC.myField';
V = pi; % value or array
S = struct()
C = split(F,'.');
S = setfield(S,C{:},V)
Checking:
S.levelA.levelB.levelC.myField
And for completeness, the reverse operation:
W = getfield(S,C{:})
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!