xerror.m

来自「Yaakov Bar-Shalom, X.-Rong Li,Thiagaling」· M 代码 · 共 17 行

M
17
字号
%%% DynaEst 3.032 01/02/2001
% Copyright (c) 2000 Yaakov Bar-Shalom
%
% Xerror : calucalter xe according to the nxactual
function y = Xerror(nxactual,nx,xt,nxf,x)

if (nx == nxactual) & (nxf == nxactual)
    y = xt - x ;
end
if nx > nxactual 
    xt = xt(1:4); 
end
if nxf > nxactual 
    x = x(1:4) ;
end
y = xt-x ;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?