如何调试以下Matlab代码?

时间:2017-01-09 09:55:20

标签: matlab parameters estimation

错误

  

文件:parameter_estimation_1.m行:8列:10

     

意外的MATLAB表达式。

当我运行以下MATLAB代码时,

会突然出现:

T = 0:0.25:5; % time vector (row)
T = T'; % time vector (column)
seed = [3;0.5]; % seed for noise generation
randn('state',seed); % using the same seed each time
uu = 0.5 1 0.25*randn(length(T),1); % mean of 0.5 with variance
% of 0.25
U = 2*round(uu)-1; % creates PRBS with -1 and 1 values %
sim('est_vdv'); % runs simulation of linear van de vusse % diagram
figure(1); % plot input-output data
subplot(2,1,1),plot(tp,yp,'k',t,y,'ko');
xlabel('time, min'), ylabel('y')
title('PRBS estimation example')
subplot(2,1,2),plot(tp,up,'k'); xlabel('time, min'),ylabel('u')
axis([0 5 -1.1 1.1])
% % generate phi matrix for estimation
for j = 4:22;
phi(j-3,:) = [y(j-2) y(j-3) u(j-2) u(j-3)];
end
%
theta = inv(phi'*phi)*phi'*y(3:21) % estimate parameters
num = [theta(3) theta(4)]; % numerator of discrete transfer function
den = [1 -theta(1) -theta(2)]; % denominator of discrete transfer function
sysd = tf(num,den,0.25) % create discrete tf object
tzero(sysd) % calculate zeros
pole(sysd) % calculate poles
syszpk = zpk(sysd) % zero-pole-k form

此代码应与标题为" est_vdv"的SIMULINK模型串联运行。估计模型的参数。 我该如何处理这个错误?

1 个答案:

答案 0 :(得分:-1)

感谢朋友们的建议,我已经能够弄清楚第5行出了什么问题,应该是

uu=0.5+0.25.*randn(length(T),1)

很抱歉,错误地指出错误是在第8行。