Group and individual means

1 visualización (últimos 30 días)
Liz Mat
Liz Mat el 9 de Jul. de 2019
Comentada: Liz Mat el 12 de Jul. de 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)

Respuesta aceptada

per isakson
per isakson el 9 de Jul. de 2019
Try this
YSA1 = Y(Sub==1&A==1);
SubMean = mean (YSA1);
  3 comentarios
per isakson
per isakson el 10 de Jul. de 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 el 12 de Jul. de 2019
Thank you!

Iniciar sesión para comentar.

Más respuestas (1)

Liz Mat
Liz Mat el 10 de Jul. de 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 comentario
per isakson
per isakson el 10 de Jul. de 2019
The parentheses in SA1 = (Sub==1)&(A==1); are not needed.

Iniciar sesión para comentar.

Categorías

Más información sobre Particle & Nuclear Physics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by