Renaming a field in a structure array - MATLAB Cody - MATLAB Central

Problem 86. Renaming a field in a structure array

Difficulty:Rate

MATLAB has a setfield and a rmfield, but not a "rename field". You need to write one for this problem.

Example

Suppose

 s(1).foo = 1;
 s(1).bar = 'one';
 s(2).foo = 2;
 s(2).bar = 'two';

and you want the field "bar" to be renamed "baz". Given the inputs s, oldField, and newField, you must return this output structure with all the data still in place.

 s(1).foo = 1;
 s(1).baz = 'one';
 s(2).foo = 2;
 s(2).baz = 'two';

[Problem from Matthew Simoneau]

Solution Stats

57.96% Correct | 42.04% Incorrect
Last Solution submitted on May 09, 2025

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
4
8

Problem Recent Solvers1561

Suggested Problems

More from this Author96

Problem Tags

Community Treasure Hunt

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

Start Hunting!