Compute average of each row in different matrices
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
PIRIL
el 24 de Feb. de 2014
Respondida: Walter Roberson
el 24 de Feb. de 2014
Hi all,
I have 50 matrices and I want to compute average of each row in a matrix with the correspoding rows in the other matrices.
For instance I have two matrices
A=[3,4,5;2,6,7] B=[5,9,1;1,7,2]
and I want to obtain
average=[4,6.5,3;1.5,6.5,4.5]
Many thanks
0 comentarios
Respuesta aceptada
Walter Roberson
el 24 de Feb. de 2014
(A + B)./2
If you wanted to average all 50 together,
mean( cat(3, A, B, C, ....M50), 3)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!