summaryrefslogtreecommitdiff
path: root/830/CH3/EX3.2.10/Correlation_Property.sce
blob: f700770d9d815aad38113f580bcab64f74a9c57d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Graphical//
//Example 3.2.10
//Correlation Property Proof
syms n z;
x1 = (0.5)^n
X1 = symsum(x1*(z^(-n)),n,0,%inf)
X2 = symsum(x1*(z^(n)),n,0,%inf)
disp(X1,"X1 =")
disp(X2,"X2 =")
X = X1*X2
disp(X,"X=")
//Result
//Which is equivalent to Rxx(Z) = 1/(1-0.5(z+z^-1)+(0.5^2))
//i.e for a = 0.5 Rxx(Z) = 1/(1-a(z+z^-1)+(a^2))