代码搜索:persistent
找到约 2,751 项符合「persistent」的源代码
代码结果 2,751
www.eeworm.com/read/225665/14526573
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/222611/14683598
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/221024/14766295
edu^~ridgway^ http:^^www.cs.umass.edu^~ridgway^
Date: Thursday, 21-Nov-96 23:19:02 GMT
Server: NCSA/1.3
MIME-version: 1.0
Content-type: text/html
Last-modified: Wednesday, 16-Oct-96 18:47:00 GMT
Content-length: 901
John Ridgway's Home Page
www.eeworm.com/read/220288/14844106
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/220288/14844139
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/220288/14844149
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
www.eeworm.com/read/214909/15084033
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/205695/15309711
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/172725/5382759
vm extensionobject.vm
#set ($interface = "")
#if ($table.Interface)
#set ($interface = ", $table.Interface")
#end
package $package;
#if ($table.isAbstract())
#set ($abstract = "abstract")
#end
import org.apache.torq
www.eeworm.com/read/171486/5394238
java locationbean.java
package salesdb;
/**
* Bean implementation class for Enterprise Bean: Location
*/
public abstract class LocationBean implements javax.ejb.EntityBean {
private javax.ejb.EntityContext myEntityC