Getting fieldnames from mwArray struct
8 ビュー (過去 30 日間)
古いコメントを表示
Is there any way to extract all the field names from a struct stored in an mwArray? Similar to the fieldnames() command inside matlab
0 件のコメント
回答 (1 件)
Co Melissant
2014 年 8 月 20 日
number of fields can be obtained using "NumberOfFields()":
const char* fields[] = {"a", "b", "c"};
mwArray a(2, 2, 3, fields);
int n = a.NumberOfFields();
individual field names can then be obtained using "GetFieldName(id)"
const char* fields[] = {"a", "b", "c"};
mwArray a(2, 2, 3, fields);
mwString tempname = a.GetFieldName(1);
const char* name = (const char*)tempname;
So using a loop all names you can get all names. Not aware of a simpler solution...
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!