mean

조회 수: 5 (최근 30일)
Bahareh
Bahareh 2011년 10월 22일
I have a 76x5 matrix and would like to convert this to a 76x1 matrix whose rows are the mean of each of the rows of the original matrix. Can anybody help me?
Thanks in advance.

채택된 답변

Mitch Martelli
Mitch Martelli 2011년 10월 22일
A=rand(76,5); m=mean(A,2);

추가 답변 (1개)

Image Analyst
Image Analyst 2011년 10월 22일
Did you happen to look up the help for the mean() function? If you had, you would have seen that you can specify the dimension along which to compute the mean.
rowMeans = mean(your2DArray, 2);
  댓글 수: 4
Image Analyst
Image Analyst 2011년 10월 22일
Very strange that you tried my answer and had some difficulties with it and then you tried Mitch's answer and had it work when our two answers are 100% identical, other than the names of the variables. I have no explanation unless I see your code. Sorry you wasted an hour with my code.
Jan
Jan 2011년 10월 22일
+1. Your code is trivial, but the suggestion to read the help text of MEAN is perfect, because it will solve 10.000 further questions very efficiently.
I do not understand, why Mitch accepts his own answer.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by