A single line of MATLAB code that computes the mean and standard deviation of a 1‐dimensional array named A of numbers???
1 回表示 (過去 30 日間)
古いコメントを表示
I have to right a single line of code that calculates the mean and standard deviation of an array without using the mean or standard deviation command. Help!
0 件のコメント
採用された回答
Torsten
2015 年 11 月 6 日
m=sum(x)/numel(x);
s=sqrt(sum((x-m).^2)/(numel(x)-1));
?
Best wishes
Torsten.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で NaNs についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!