Finding mean for multiple matrices

13 次查看(过去 30 天)
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.

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-10-22
编辑:KALYAN ACHARJYA 2019-10-22
Please do read here
result1=mean(A);
So on..
  5 个评论
Andrei Bobrov
Andrei Bobrov 2019-10-22
A=[4,5,6];
B=[2,3,6];
C=[5,4,2];
data=[A;B;C]
result=mean(data)
HABILA
HABILA 2019-10-22
Thank You so much. This one worked.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by