How can I calculate the mean of a vector ?

조회 수: 3 (최근 30일)
Mallouli Marwa
Mallouli Marwa 2018년 7월 12일
댓글: Guillaume 2018년 7월 12일
Hi
How can I calculate the mean of a vector ?
V_freq1 = 2*abs(VOLT1(6:NFFT/64))./( 2*abs( DISP1 (6:NFFT/64) ).*(2*pi*10)^2);
VOLT1, disp1 are vectors.
Please help me Best,
  댓글 수: 3
Mallouli Marwa
Mallouli Marwa 2018년 7월 12일
Mean (V_freq1)
An error is appeared
Torsten
Torsten 2018년 7월 12일
mean, not Mean

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

채택된 답변

KSSV
KSSV 2018년 7월 12일
mean(V_freq1)
If your data has NaN's..have a look on nanmean.
% mean with inbuilt command
a = rand(100,1) ;
themean = 0 ; % the mean
for i = 1:length(a)
themean = themean+a(i) ;
end
themean = themean/length(a) ;
  댓글 수: 3
Steven Lord
Steven Lord 2018년 7월 12일
The 'omitnan' option for mean was introduced in release R2015a.
Guillaume
Guillaume 2018년 7월 12일
Steven, it's a long standing request of mine that this be documented in the function doc (just under the Introduced in ...). It would greatly help in writing backward compatible code.

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

추가 답변 (1개)

Jan
Jan 2018년 7월 12일
편집: Jan 2018년 7월 12일
Or:
m = sum(V_freq1) / numel(V_freq1)
Good ideas to solve such problems:
docsearch mean
help mean
Internet search engine: "Matlab mean"
For old Matlab versions and ignoring NaNs:
index = ~isnan(v);
m = sum(v(index)) / sum(index)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by