help me in performing summation
1 回表示 (過去 30 日間)
古いコメントを表示
I want to perform equation 7 and 8
please help me,
N is 256 and mew is 0.5
i tried symbolic summation but could not get answer
0 件のコメント
採用された回答
Roger Stafford
2013 年 1 月 19 日
It is useless to attempt a symbolic summation of these quantities. Each of the x quantities would have to appear. Just use matlab numeric formulas:
N = length(x);
mu = sum(x)/N;
sigmasquared = sum((x-mu).^2)/(N-1);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!