"Access Elements of a Nonscalar Structure Array" issue

6 views (last 30 days)
Hello,
I try to access data stored in a structure of this type:
I would love to have access easily for exemple to all the masses of all the subsystems, but i cannot manage to do it , i tried : (I pasted the full code at the end)
systems(:).subsystem.mass
but it returned: Reference to non-existent field 'subsystem'.
The real problem has a lot more system than that, do you have an idea on how i could access to all the masses contained in all the subsystems?
Thank you for your help!
I tried to follow this MatLab tutorial but it doesn't seem to work in my case:
clear all
clc
%% creation of the structure
systems=struct();
system1.mass=1000;
system1.CG=[0,1,2];
system1.subsystem.mass=[0;10;100];
system1.subsystem.CG=[0,1,2;3,4,5;6,7,8];
systems.system1=system1;
system2.CG=[0,1,2];
system2.mass=1000;
system2.subsystem.mass=[0;10;100];
system2.subsystem.CG=[0,1,2;3,4,5;6,7,8];
systems.system2=system2;
systems.mass=5000;
systems.CG=[10,20,30];
clear system1
clear system2
%% access to data
systems(:).subsystem.mass
  2 Comments
Thomas Fournier
Thomas Fournier on 7 Jun 2021
Thank you for your answer,
Indeed CLEARALL is not necessary, i recreated the problem in a separated file so it works just well this way.

Sign in to comment.

Accepted Answer

Jan
Jan on 7 Jun 2021
You cannot access fields of deeply nested structs in Matlab. You need a loop to do this.
  2 Comments
Jan
Jan on 7 Jun 2021
Hiding an index in the fieldname as in "system1" is a bad idea. Deeply nested structs are inefficient also, if you need to access nested fields. So restructuring the data might be the best approach.

Sign in to comment.

More Answers (1)

Stephen23
Stephen23 on 7 Jun 2021
Edited: Stephen23 on 7 Jun 2021
sys = fakedata()
sys = struct with fields:
system1: [1×1 struct] system2: [1×1 struct] mass: 5000 CG: [10 20 30]
fnm = regexp(fieldnames(sys),'^system\d+$','match');
fnm = [fnm{:}]
fnm = 1×2 cell array
{'system1'} {'system2'}
fun = @(f)sys.(f).subsystem.mass;
out = cellfun(fun,fnm,'uni',0)
out = 1×2 cell array
{3×1 double} {3×1 double}
Checking (tip for the future: using different values for fake data is a simple sanity check):
out{1}
ans = 3×1
0 10 100
out{2}
ans = 3×1
0 10 100

Categories

Find more on Structures in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!