How to implement this formula in MatLab?
1 回表示 (過去 30 日間)
古いコメントを表示
Serhii Sheinych
2019 年 11 月 25 日
コメント済み: Serhii Sheinych
2019 年 11 月 25 日
n is a constant = 100
x is an array of 100 rand elements
0 件のコメント
採用された回答
JESUS DAVID ARIZA ROYETH
2019 年 11 月 25 日
directly:
n=100;
x=rand(1,n);
s=std(x)
or with a loop:
n=100;
x=rand(1,n);
xmean=mean(x);
sumt=0;
for i=1:n
sumt=sumt+(x(i)-xmean)^2;
end
s=sqrt(sumt/(n-1))
その他の回答 (0 件)
参考
カテゴリ
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!