代码搜索:persistent
找到约 2,751 项符合「persistent」的源代码
代码结果 2,751
www.eeworm.com/read/432495/8601720
m chap7_10f.m
%Discrete Kalman filter
%x=Ax+B(u+w(k));
%y=Cx+D+v(k)
function [u]=kalman(u1,u2,u3)
persistent A B C D Q R P x
yv=u2;
if u3==0
x=zeros(2,1);
ts=0.001;
a=25;b=133;
sys=tf(b,[1,a
www.eeworm.com/read/187764/8602335
java deluxeplotgraph1.java
package DeApp1.plot;
import java.awt.*; // Import all classes from the java.awt package
// AWT is the Abstract Window Toolkit. The AWT
import java.io.*;
import
www.eeworm.com/read/288766/8609039
dep chat server.dep
# Microsoft Developer Studio Generated Dependency File, included by Chat Server.mak
.\Blocksock.cpp : \
".\Blocksock.h"\
".\Utility.h"\
".\Chat Server.cpp" : \
".\Chat Server.h"\
".\C
www.eeworm.com/read/388422/8610557
m chap7_10f.m
%Discrete Kalman filter
%x=Ax+B(u+w(k));
%y=Cx+D+v(k)
function [u]=kalman(u1,u2,u3)
persistent A B C D Q R P x
yv=u2;
if u3==0
x=zeros(2,1);
ts=0.001;
a=25;b=133;
sys=tf(b,[1,a
www.eeworm.com/read/431224/8697373
m fm_status.m
function fm_status(varargin)
% FM_STATUS display convergence error of the current simulation in
% the main window
%
% FM_STATUS('init',xmax,colors,styles,faces)
% FM_STATUS('update',values,i
www.eeworm.com/read/384940/8831071
m fm_status.m
function fm_status(varargin)
% FM_STATUS display convergence error of the current simulation in
% the main window
%
% FM_STATUS('init',xmax,colors,styles,faces)
% FM_STATUS('update',values,i
www.eeworm.com/read/384566/8860280
java deluxeplotgraph1.java
package DeApp1.plot;
import java.awt.*; // Import all classes from the java.awt package
// AWT is the Abstract Window Toolkit. The AWT
import java.io.*;
import
www.eeworm.com/read/381017/9115272
m agvobs.m
function y=agvobs(x,w)
% Prediction of observation
%
% Check if variables should be initailized
persistent C % Make variables static
if nargin==1
return
end
y = x(1:3)+w;
www.eeworm.com/read/381017/9115317
m bodydot.m
function xdot=bodydot(x,u,v)
% Falling body example. State equation.
persistent gamma
if nargin==1,
gamma = x(4);
else
xdot = [-x(2)+v(1);
-exp(-gamma*x(1))*x(2)*x(2)*x(3)+v(2);
www.eeworm.com/read/381017/9115322
m body2.m
function y=body2(x,w)
% Falling body example. Output equation.
persistent M H
if nargin==1,
M = x(2);
H = x(3);
else
tmp = x(1)-H;
y = sqrt(M*M+tmp*tmp)+w;
end