Sigma notation - two variables. 'for' loop or symsum?
Ältere Kommentare anzeigen
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.
Akzeptierte Antwort
Weitere Antworten (1)
Roger Stafford
am 21 Okt. 2014
Axx = x.'*hankel(x,zeros(1,N/4+1));
2 Kommentare
Nate
am 22 Okt. 2014
Roger Stafford
am 22 Okt. 2014
That's probably because your value N is not a multiple of 4. Do this:
round(N/4)+1
instead.
Kategorien
Mehr zu Correlation and Convolution finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!