Finding mean for multiple matrices
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
HABILA
el 22 de Oct. de 2019
Comentada: HABILA
el 22 de Oct. de 2019
I have three different one dimentional matrices. How do I find the mean values of them.
For Example
A=[4,5,6];
B=[2,3,6];
C=[5,4,2];
I nead mean of (A,B,& C)
Please Help.
0 comentarios
Respuesta aceptada
KALYAN ACHARJYA
el 22 de Oct. de 2019
Editada: KALYAN ACHARJYA
el 22 de Oct. de 2019
5 comentarios
Andrei Bobrov
el 22 de Oct. de 2019
A=[4,5,6];
B=[2,3,6];
C=[5,4,2];
data=[A;B;C]
result=mean(data)
Más respuestas (0)
Ver también
Categorías
Más información sobre Multidimensional Arrays 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!