How do I take an average of fields in a structure?

48 ビュー (過去 30 日間)
Liz Web
Liz Web 2018 年 3 月 23 日
回答済み: George Abrahams 2022 年 12 月 30 日
I have 3 fields in a structure that I want to take the average and standard deviation of. What is the simplest way to do this?
  1 件のコメント
Espen Mikkelsen
Espen Mikkelsen 2018 年 3 月 24 日
could you give one example of your data?

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2018 年 3 月 24 日
One way
totalMean = mean([BindingDataToSave.TotalVirusesBound]);
totalStdDev = std([BindingDataToSave.TotalVirusesBound]);
Similar for the other 2 fields. Walter's method is probably better since it gives you all 3 means in one shot.

その他の回答 (2 件)

Walter Roberson
Walter Roberson 2018 年 3 月 24 日
means = structfun(@mean, BindingDataToSave, 'uniform', 0);
stds = structfun(@std, BindingDataToSave, 'uniform', 0);

George Abrahams
George Abrahams 2022 年 12 月 30 日
An improvement over Walter's answer would be to use my fieldfun function on File Exchange / GitHub, which outputs a structure with the same fields as the input structure(s). That means that you can index the means and standard deviations without knowing the order of the fields (effectively columns in your attached image).
rng(1,'twister')
BindingDataToSave = struct( 'TotalVirusesBound', num2cell(rand(26,1)), ...
'NumberGoodViruses', num2cell(rand(26,1)), 'NumberBadViruses', ...
num2cell(rand(26,1)) );
fieldfun( @(varargin) mean([varargin{:}]), BindingDataToSave )
% ans = struct with fields:
% TotalVirusesBound: 0.4574
% NumberGoodViruses: 0.4675
% NumberBadViruses: 0.4530
Although, you should probably also consider using a table and not a structure.
BindingDataToSave = struct2table( BindingDataToSave );
mean( BindingDataToSave.TotalVirusesBound )
% ans = 0.4574
varfun(@mean,BindingDataToSave)
% ans = 1×3 table
% mean_TotalVirusesBound mean_NumberGoodViruses mean_NumberBadViruses
% 0.45736 0.46752 0.45302

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by