无法在Matlab中更改持久变量的值

时间:2019-02-24 06:08:32

标签: matlab simulink persistent

我在simulink功能块之一中定义了一个功能。在该函数中,我定义了一些持久变量,并希望根据特定条件更改其值。这些持久变量的值不会改变。这是我的代码,

function [er,mem,phi_hat_dot,hdot,ldot,x_hat,x_til1,...
    x_til2,f_hat,g_hat,x_hat_dot,h_bar,ns]= ident(x,u,h,...
    l,phi_hat,gain)
persistent i Z x_tj;            % initialized persistent values
if isempty(i)
    i=0;
end
if isempty(Z)
    Z=zeros(5,15);
end
if isempty(x_tj)
    %si=size(Z);
    x_tj=zeros(length(x),15);
end
Gamma=gain(1);a=gain(2);A=gain(3); % gains
x1=x(1);x2=x(2);                   % state variable
z=[x1,x2,x1*(x1^2+x2^2),x2*(x1^2+x2^2),u]';
hdot=-a*h+z;
ldot=-A*l+x;
ns=1+h'*h+l'*l;
x_bar=x/ns;h_bar=h/ns;l_bar=l/ns;
x_hat=phi_hat*h_bar+a*l_bar;
e=x_hat-x_bar;
%%%%%%%%%Memory Stack%%%%%%%
while i<15               %This is the place where I am altering persistent variables
    Z(:,i+1)=h_bar;
    x_tj(:,i+1)=x_bar;
    i=i+1;
end
mem=x_tj;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%Error Stack%%%%%%%%%%%
%Gamma=102;
si=size(Z);
er=zeros(length(x),si(2));
if i>=15
    for j=1:si(2)
        er(:,j)=x_hat-x_tj(:,j);
    end
    phi_hat_dot=-Gamma*e*h_bar'-Gamma*er*Z';
else
    phi_hat_dot=-Gamma*e*h_bar';
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%Update Law%%%%%%%%%%%
x_til1=x-x_hat;
x_til2=x_bar-x_hat;
f_hat=phi_hat(:,1:4)*z(1:4);
g_hat=phi_hat(:,5)*1;
x_hat_dot=f_hat+g_hat*u;

1 个答案:

答案 0 :(得分:0)

仅查看变量i,然后按照您的代码进行操作,i只会在模型初始化期间发生变化。

也就是说,在t=0,代码被调用,并且

  • 最初i = 0;
  • 然后,内存堆栈 i0递增到15

由于您没有在其他任何地方更改i,因此上述含义意味着,由于i是持久性的,因此在其他所有时间它的值都为15

因此,while i < 15循环永远不会执行(初始化之后),并且也永远不会更改Zx_tj的值(初始化之后)。这也意味着在错误堆栈中,i >= 15代码将始终被执行。

如果上述情况没有发生(必须发生),那么您看到的是什么,期望什么?

还要注意,您可以稍微简化初始化。在i为空的情况下,Zx_tj始终为空,因此没有真正的理由检查它们。

if isempty(i)
    i=0;
    Z=zeros(5,15);
    %si=size(Z);
    x_tj=zeros(length(x),15);
end