List of structures as input to getfield()?

2 views (last 30 days)
uffeaf
uffeaf on 16 May 2015
Edited: Walter Roberson on 16 May 2015
The getfield() is defined as:
value = getfield(myStruct, 'myField').
Now I have a list of structures, myStructList, and I'd like getfield() to run through the filenames of that list like:
value(i) = getfield(myStructList(i).name,'myField')
But this gives an error message, any idea how this can be done?
Error messages are:
Attempt to reference field of non-structure array.
Error in getfield (line 36)
f = s.(deblank(strField)); % deblank field name
  3 Comments
Image Analyst
Image Analyst on 16 May 2015
How did you get myStructList? Did you get it from a call to dir()?

Sign in to comment.

Answers (2)

Nobel Mondal
Nobel Mondal on 16 May 2015
First Argument of 'getfield' should be a struct. `myStructList(i).name` probably refers to a char type variable. If myStructList is essentially an array of structures, you could try
>> getfield(myStructList(i),'myField')
However, as Star Strider said, we could be more useful after looking at the error stack.

Walter Roberson
Walter Roberson on 16 May 2015
In your code,
myStructList(i).name
would be a file name. And you are then trying to get the MyField field of the file name.
Is myStructList(i).name intended to be a string that is a variable name and you want to look up that variable and get the MyField field of that variable? If so, don't do that.
If you absolutely must work with strings that name variables, then put all of the variables as fieldnames into a single structure. For example
MyStruct.vodoo23
MyStruct.skidoo
instead of two variables, one named vodoo23 and the other named skidoo.
If you put them all in one structure, then you can use dynamic field names.
value(i) = MyStruct.(myStructList(i).name).myField);

Categories

Find more on Structures in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!