How do I rename fields of a structure array?

587 ビュー (過去 30 日間)
John Petersen
John Petersen 2016 年 3 月 17 日
コメント済み: Leon 2024 年 3 月 9 日
Say I have a structure array such as
A =
1x49 struct array with fields:
a
b
c
d
How do I rename the structure fields? Such as
A =
1x49 struct array with fields:
aa
ba
ca
da
  4 件のコメント
Leon
Leon 2024 年 1 月 7 日
I third it.
Steven Lord
Steven Lord 2024 年 1 月 9 日
編集済み: Steven Lord 2024 年 1 月 9 日
To officially submit this as an enhancement request please contact Technical Support directly using this link. When you do, please mention the circumstances in which you'd want to use this functionality if it existed.
  • Would you need it to support non-scalar struct arrays?
  • Would you need it to be able to rename one field at a time or renaming a collection of fields all at once?
  • How would you expect it to operate if you tried to rename a field to a field name that already exists in the struct? Error, warn and do nothing, overwrite, try to merge them somehow, etc.?
  • Do you need it to be able to operate over multiple levels? If you had a struct a with fields b and c where b was itself a struct array with field d, would you expect to be able to change both a.c and a.b.d in one call (assuming the answer to my second question was "renaming a collection of fields all at once")?

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

採用された回答

Walter Roberson
Walter Roberson 2016 年 3 月 17 日
struct2cell( cell2struct(A), {'aa', 'ba', 'ca', 'da'})
  5 件のコメント
Guillaume
Guillaume 2016 年 3 月 18 日
編集済み: Guillaume 2016 年 3 月 18 日
This is probably the most straightforward method. For safety, as there's no guarantee that the fields in the original structure are ordered alphabetically, I'd use:
cell2struct(struct2cell(ordefields(A)), {'aa', 'ba', 'ca', da'})
Note that this will cope with structure arrays as well.
Christian Svensson
Christian Svensson 2019 年 11 月 27 日
編集済み: Christian Svensson 2019 年 11 月 27 日
I encountered this problem recently, for completeness I'll add my solution. Assuming that you want to add the same suffix to all fieldnames, you can use
cell2struct(struct2cell(A), strcat(fieldnames(A), 'a'))
Note that fieldnames and struct2cell return the field names and the values in the same order, so no sorting is needed.

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

その他の回答 (6 件)

Jos (10584)
Jos (10584) 2016 年 3 月 17 日
There is a somewhat hidden function called renameStructField, that can do the job, perhaps within a loop.
Or use dynamic field names and copy the fields into a new structure. This makes code quite readable and bug proof.
oldnames = {'a','b','c'}
newnames = {'aa','test','cXY'}
for k=1:number(oldnames)
Snew.(newnames{k}) = Sold.(oldnames{k}) ;
end
  3 件のコメント
John Petersen
John Petersen 2016 年 3 月 17 日
Right, this does not work for a structured array. Do you know what 'tweaking' would make it work?
Jos (10584)
Jos (10584) 2016 年 3 月 18 日
Use deal (see my other answer)

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


Sriram Nayak
Sriram Nayak 2020 年 4 月 18 日
編集済み: Walter Roberson 2024 年 3 月 6 日
function structOut = renamefield(structIn, oldField, newField)
for i = 1:length(structIn)
structIn = setfield(structIn,{i},newField,getfield(structIn(i),oldField));
end
structOut = rmfield(structIn,oldField);
end
  1 件のコメント
Walter Roberson
Walter Roberson 2024 年 3 月 6 日
This will fail if the new field names happen to include some of the old field names. For example
a -> aa
b -> a

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


Jos (10584)
Jos (10584) 2016 年 3 月 18 日
You can use DEAL and a for-loop to change fieldnames:
% create a structure array, with different fields
for k=1:10,
Sold(k) = struct('a',k,'b',1:k','c',sprintf('test%02d',k)) ;
end
% engine
oldnames = {'a','b','c'}
newnames = {'aa','test','cXY'}
N = numel(Sold)
for k=1:numel(oldnames)
[Snew(1:N).(newnames{k})] = deal(Sold.(oldnames{k})) ;
end

Teresa Martinez
Teresa Martinez 2021 年 5 月 26 日
Create new fields with the same data:
A.aa = A.a;
A.ba = A.b;
and remove the old ones:
A = rmfield(A,'a');
A = rmfield(A,'b');
  1 件のコメント
Aditya
Aditya 2023 年 3 月 11 日
Won't work for non scalar parameters

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


Jan
Jan 2022 年 6 月 8 日
Although this thread is old, it has a lot of views and it is worth to mention this implementation as fast C-Mex:

Leon
Leon 2024 年 1 月 7 日
編集済み: Leon 2024 年 1 月 7 日
Until Matlab (hopefully) introduces a rename field function, I would convert to a table then use renamevars() and then convert back to a struct. E.g., where S is your struct:
T = struct2table(S);
T = renamevars(T, 'Old_Name', 'New_Name');
S = table2struct(T);
Or, as one line:
S = table2struct(renamevars(struct2table(S), 'Old_Name', 'New_Name'));
An advantage of this over converting to a cell array and back is that you don't need to worry about the names of the other fieldnames, or know what number the field is, etc. You can still rename several fields at once when using renamevars. Also, since each variable in a Matlab table has to maintain the same value for all rows, it should be much more efficient memory-wise than converting a large struct into a cell array and back (where each cell can be of any type and that type must be stored), but I haven't done any tests.
Actually, once you have converted to a table, you may want to have a good think about whether it makes sense to convert it back into a struct: it is often more comfortable to work with tables, and they can be more efficient memory-wise. Apart from better memory use and functions like renamevars, there are neat features like being able to have several variable names under one column.
Or try the C-Mex "renamefield" on Matlab file exchange, as Jan suggested.
  5 件のコメント
Stephen23
Stephen23 2024 年 3 月 9 日
"I'm surpised Matlab isn't smart enough to just keep the columns as cell type."
They aren't cell type.
Leon
Leon 2024 年 3 月 9 日
I see. Thanks.

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

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by