フィルターのクリア

List of structures as input to getfield()?

1 回表示 (過去 30 日間)
uffeaf
uffeaf 2015 年 5 月 16 日
編集済み: Walter Roberson 2015 年 5 月 16 日
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 件のコメント
uffeaf
uffeaf 2015 年 5 月 16 日
Thanks, done.
Image Analyst
Image Analyst 2015 年 5 月 16 日
How did you get myStructList? Did you get it from a call to dir()?

サインインしてコメントする。

回答 (2 件)

Nobel Mondal
Nobel Mondal 2015 年 5 月 16 日
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 2015 年 5 月 16 日
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);

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by