How can I calculate the mean of a vector ?
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
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 件のコメント
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.
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!