我想在没有任何内置 MATLAB 函数的情况下自动关联随机噪声向量。
我给出的自相关方程是:
Rxx[L] = ∑ from n = 1 to N-1 [x(n)*x(n+L)]
L = [0:200]
我已经编写了下面的代码,但plot
Rxx
vsL
plot
不是我所期望的。我希望我的情节在MATLAB 开始其索引为 1时L = 0
或之后的某个最大值开始。然后指数减少并在最小值为零时饱和。L = 1
clc
clear all
randn('seed',2496132);
n = randn(1,1024);
upperbound = numel(n)-1;
for L = 1:200
for j = 1 : upperbound
n1(j) = n(j)+L;
Rxx(j) = (n(j)*n1(j));
end
Rxx_sum(L) = sum(Rxx);
Rxx = 0;
end
plot([1:200], Rxx_sum)