help me in performing summation

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

 채택된 답변

Roger Stafford
Roger Stafford 2013년 1월 19일

0 개 추천

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개)

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by