When a structure is passed to a function, can we add a field to it?
5 views (last 30 days)
Show older comments
Mohamed Abd El Raheem
on 20 Jan 2022
Commented: Mohamed Abd El Raheem
on 21 Jan 2022
As the title suggests:
If I passed a structure variable to a function, can this function add a new field to it and have that stucture among its outputs with the new added field?
Or, do I have to create a new output structure?
0 Comments
Accepted Answer
Voss
on 20 Jan 2022
Edited: Voss
on 20 Jan 2022
The answer is yes, the function can add a new field and pass the struct back out, and no, you don't have to create a new struct (MATLAB creates a new struct for you).
input = struct('old_field',1);
output = test_function(input);
disp(input);
disp(output);
function in = test_function(in)
in.new_field = 2;
end
More Answers (0)
See Also
Categories
Find more on Structures in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!