我无法删除此错误。有人可以帮帮我吗。问题是它在生成hdl代码时的第4步中显示了一些错误。
function [Rxx]=autom(X) % [Rxx]=autom(x)
Rxx=zeros(1,1024);
for m=1: 1025
for n=1: 1025-m
Rxx(m)=Rxx(m)+X(n)*X(n+m-1);
end
end
%testbench
N=1024; % Number of samples
f1=1; % Frequency of the sinewave
FS=200; % Sampling Frequency
n=0:1023; % Sample index numbers
X=zeros(1,1024);
% X=sin(2*pi*1*(0:1023)/200);
X=sin((2*pi*1.*n)./200);
t=[1:1024]*(1/200);
%ti=f1*n/FS;
%x=sin(2*pi*ti); % Generate the signal, x(n)
%t1=[1:N];
%t=t1*(1/FS); % Prepare a time axis
subplot(2,1,1); % Prepare the figure
plot(t,X);
title('Sinwave of frequency 1000Hz [FS=8000Hz]');
xlabel('Time, [s]');
ylabel('Amplitude');
grid;
Rxx = autom(X(1:1024)); % Calculate its autocorrelation
subplot(2,1,2);
plot(Rxx);
title('Autocorrelation function of the sinewave'); % Plot the autocorrelation
xlabel('lags');
ylabel('Autocorrelation');
答案 0 :(得分:0)
错误显示:“ [...]动态矩阵X
[...]不支持”
您的问题是在函数中您正在执行X(n)*X(n+m-1);
,并且似乎正在理解这正在动态地改变矩阵的大小。我怀疑实际上是Rxx
请注意,您的X
的长度为1024,但是您对n
和m
的迭代的长度为1025。 Rxx
的长度为1024,但您进行Rxx(m)
的操作后m
会增加到1025,因此会动态更改其大小(MATLAB会将Rxx
的大小从1024增加到1025 ,动态)
确定要不要
function [Rxx]=autom(X) % [Rxx]=autom(x)
Rxx=zeros(1,1024);
for m=1: 1024
for n=1: 1024-m
Rxx(m)=Rxx(m)+X(n)*X(n+m-1);
end
end