Mean, Max and Min of Structured Cell array
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ganesh Naik
am 8 Apr. 2021
Kommentiert: Ganesh Naik
am 10 Apr. 2021
Hi all, I have a structured cell array where I need to compute the mean of each cell from column 4. Column 3 contains the name of the data (repeated for number of days 31, 29 etc.). At the end I would like to display the results as name (3rd column one value) , Average, Min and Max of each cell of 4th column data. Any help (sample example) in this regard is highly appreciated. For your reference I have attached the picture.

0 Kommentare
Akzeptierte Antwort
Matt J
am 8 Apr. 2021
Bearbeitet: Matt J
am 8 Apr. 2021
You should first convert everything to table form.
Column3={{'dog';'dog';'dog'},{'cat';'cat'}}; %Original data
Column4={[1;2;3], [4;5]};
Column3=string( vertcat(Column3{:}) );
Column4=vertcat( Column4{:} );
T=table(Column3,Column4,'VariableNames',{'Names','Data'})
From that point on, it all becomes much easier:
Means = varfun(@mean,T,'GroupingVariables','Names')
Maxs= varfun(@max,T,'GroupingVariables','Names')
14 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!