在Matlab中,如何对嵌套结构的顺序进行排序?

时间:2013-06-20 04:27:58

标签: matlab sorting nested structure

我试图通过指定的参数按降序对嵌套结构的顺序进行排序。请参考以下嵌套结构:

struct(1).otherStruct(1).name = 'A';
struct(1).otherStruct(1).classAve = 21;
struct(1).otherStruct(2).name = 'B';
struct(1).otherStruct(2).classAve = 21;
struct(1).otherStruct(3).name = 'C';
struct(1).otherStruct(3).classAve = 21;

struct(2).otherStruct(1).name = 'D';
struct(2).otherStruct(1).classAve = 13;
struct(2).otherStruct(2).name = 'E';
struct(2).otherStruct(2).classAve = 13;
struct(2).otherStruct(3).name = 'F';
struct(2).otherStruct(3).classAve = 13;

struct(3).otherStruct(1).name = 'G';
struct(3).otherStruct(1).classAve = 24;
struct(3).otherStruct(2).name = 'H';
struct(3).otherStruct(2).classAve = 24;
struct(3).otherStruct(3).name = 'I';
struct(3).otherStruct(3).classAve = 24;

我的目标是将上面的结构按最高级别Ave排序到最低级别。我想按父结构" struct"排序。作为我想要的输出的说明,请参考下面的代码。请注意,嵌套结构现在由classAve按降序排列,但在父结构中重新分配。

struct(1).otherStruct(1).name = 'G';
struct(1).otherStruct(1).classAve = 24;
struct(1).otherStruct(2).name = 'H';
struct(1).otherStruct(2).classAve = 24;
struct(1).otherStruct(3).name = 'I';
struct(1).otherStruct(3).classAve = 24;

struct(2).otherStruct(1).name = 'A';
struct(2).otherStruct(1).classAve = 21;
struct(2).otherStruct(2).name = 'B';
struct(2).otherStruct(2).classAve = 21;
struct(2).otherStruct(3).name = 'C';
struct(2).otherStruct(3).classAve = 21;

struct(3).otherStruct(1).name = 'D';
struct(3).otherStruct(1).classAve = 13;
struct(3).otherStruct(2).name = 'E';
struct(3).otherStruct(2).classAve = 13;
struct(3).otherStruct(3).name = 'F';
struct(3).otherStruct(3).classAve = 13;

如果有人有一个简单的方法来完成这个建议,任何帮助将不胜感激。谢谢!

1 个答案:

答案 0 :(得分:2)

首先,我建议使用另一个变量名称(例如structA)而不是struct,因为那是function to create structs

然后解决您的问题(假设每个otherStruct孩子具有相同的classAve):

classAve = arrayfun(@(ii) structA(ii).otherStruct(1).classAve,1:numel(structA));
[~, sort_idx] = sort(classAve,'descend');
structAsorted = structA(sort_idx);

第一线是跳跃的最大障碍;它提取了大结构的每个数组元素中第一个otherStruct的索引。以下两行对于整理内容非常简单。