help me in performing summation

2 次查看(过去 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

采纳的回答

Roger Stafford
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 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by