how to take the average of a matrix of any size

조회 수: 2 (최근 30일)
lowcalorie
lowcalorie 2012년 3월 14일
How do I compute the mean of all the values in a matrix of any size

답변 (2개)

Wayne King
Wayne King 2012년 3월 14일
mean()
X = randn(100,100);
mean(mean(X))
or
mean(X(:))
  댓글 수: 4
Wayne King
Wayne King 2012년 3월 14일
If you want the means of the columns or the rows, you can use mean() with the dimension argument
X = mean(X,1);
or
X = mean(X,2);
Honglei Chen
Honglei Chen 2012년 3월 14일
Wayne's answer is for matrix of any size. Just try it out.

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


Sean de Wolski
Sean de Wolski 2012년 3월 14일
mean(X(:))
or for speed:
N = numel(X);
sum(reshape(X,N,1))/N;
or for fun:
eval([repmat('mean(',1,ndims(X)) 'X' repmat(')',1,ndims(X)) ';']);
  댓글 수: 1
Jan
Jan 2012년 3월 15일
A strange definition of "fun".
I think, that "sum(X(:))/numel(X)" is more fun, it is even _nice_.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by