Sigma notation - two variables. 'for' loop or symsum?
이전 댓글 표시
Hello
I am trying to compute a sigma summation of a simple single column vector x, where:
N = length(x)
k = 0:N/4
i = 1:N-k
I need to solve for Axx(k):

I have tried to solve this using 'for' loops and symsum function, without success. Help is hugely appreciated, thanks.
채택된 답변
추가 답변 (1개)
Roger Stafford
2014년 10월 21일
Axx = x.'*hankel(x,zeros(1,N/4+1));
댓글 수: 2
Nate
2014년 10월 22일
Roger Stafford
2014년 10월 22일
That's probably because your value N is not a multiple of 4. Do this:
round(N/4)+1
instead.
카테고리
도움말 센터 및 File Exchange에서 Correlation and Convolution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!