我有一个结构数组:
s(1)=struct('field1', value, 'field2', value, 'field3', value)
s(2)=struct('field1', value, 'field2', value, 'field3', value)
等等
如何将field1的所有值与field2的所有值交换?
我试过这段代码
a=[s.field1];
[s.field1]=s.field2;
[s.field2]=a;
虽然我可以将field2值输入field1,但我无法将field1值输入field2。
答案 0 :(得分:2)
你的方法几乎就是你的意思。最简单的解决方法是将a
存储为单元数组而不是数字数组,以便利用MATLAB的列表扩展:
s(1)=struct('field1', 11, 'field2', 12, 'field3', 13);
s(2)=struct('field1', 21, 'field2', 22, 'field3', 23);
a = {s.field1};
[s.field1] = s.field2;
[s.field2] = a{:};
[s.field1; s.field2]
来自哪里:
ans =
11 21
12 22
要:
ans =
12 22
11 21
对于更通用的方法,您可以使用struct2cell
和cell2struct
来交换字段:
function s = testcode
s(1)=struct('field1', 11, 'field2', 12, 'field3', 13);
s(2)=struct('field1', 21, 'field2', 22, 'field3', 23);
s = swapfields(s, 'field1', 'field2');
end
function output = swapfields(s, a, b)
d = struct2cell(s);
n = fieldnames(s);
% Use logical indexing to rename the 'a' field to 'b' and vice-versa
maska = strcmp(n, a);
maskb = strcmp(n, b);
n(maska) = {b};
n(maskb) = {a};
% Rebuild our data structure with the new fieldnames
% orderfields sorts the fields in dictionary order, optional step
output = orderfields(cell2struct(d, n));
end
提供相同的结果。