Group and individual means

1 vue (au cours des 30 derniers jours)
Liz Mat
Liz Mat le 9 Juil 2019
Commenté : Liz Mat le 12 Juil 2019
I have a dataset of kinematic angular values. Each row representing 100 datapoints of angular data (Y). I have a column vector containing my subject numbers (1-9) and another column vector indicating three different conditions (A).
I am able to calculate the group mean for each
YS1 = Y(Sub==1)
SubMean = mean (Y1S)
(All conditions, 1 subject)
Same for condition mean
YA1 = Y(A==1)
SubMean = mean (YA1)
(All subjects, 1 condition)
How can I combine it to to get the mean for 1 subject AND 1 condition - Thus (Sub==1) AND (A==1)

Réponse acceptée

per isakson
per isakson le 9 Juil 2019
Try this
YSA1 = Y(Sub==1&A==1);
SubMean = mean (YSA1);
  3 commentaires
per isakson
per isakson le 10 Juil 2019
Replace
YSA1 = Y(SUBJ==1,: & A==32,:);
by
YSA1 = Y( SUBJ==1 & A==32 );
i.e. remove the commas and the colons. See my answer
Liz Mat
Liz Mat le 12 Juil 2019
Thank you!

Connectez-vous pour commenter.

Plus de réponses (1)

Liz Mat
Liz Mat le 10 Juil 2019
I managed to get it working:
SA1 = (Sub==1)&(A==1);
YSA1 = Y(SA1,:);
SubMean = mean (YSA1);
It might be bit lengthy though.
  1 commentaire
per isakson
per isakson le 10 Juil 2019
The parentheses in SA1 = (Sub==1)&(A==1); are not needed.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Particle & Nuclear Physics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by