MATLAB: Finding mean for multiple matrices

meanmean of matricesone dimentional matrix

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.

Best Answer

Please do read here
result1=mean(A);
So on..