I've been googling and searching about but have yet to be successful with this. I would like to know the max value in a{1} and a{2} each considering all the fields. Similarly, I'd like to know the mean for each a, also considering all the fields.
a{1}.field1=[1:5];
a{2}.field1=[1:6];
a{1}.field2=[2:8];
a{2}.field2=[2:9];
I was hoping something below in a loop would work:
fn=fieldnames(a{1});
max(a{1}.(fn{:}))
mean(a{1}.(fn{:}))
I assume there is some super efficient way to do this that I am missing...Any suggestions? Thanks