代码搜索:persistent

找到约 2,751 项符合「persistent」的源代码

代码结果 2,751
www.eeworm.com/read/282093/9119766

m sizeof.m

function s = sizeof(type) % SIZEOF Number of bytes in a given precision specification persistent typemap initialized % Set up the type map if we haven't already done so if (isempty(initialized
www.eeworm.com/read/380749/9129810

mdl kalman.mdl

# $Revision: 1.2.4.5 $ Model { Name "One_pulse1" Version 6.3 MdlSubVersion 0 GraphicalInterface { NumRootInports 0 NumRootOutports 0 ParameterArgumentName
www.eeworm.com/read/380093/9165208

txt 8.txt

16应用服务器有那些? 17你所知道的集合类都有哪些?主要方法? 18给你一个:驱动程序A,数据源名称为B,用户名称为C,密码为D,数据库表为T,请用JDBC检索出表T的所有数据。 19.说出在JSP页面里是怎么分页的? 页面需要保存以下参数: 总行数:根据sql语句得到总行数 每页显示行数:设定值 当前页数:请求参数 ...
www.eeworm.com/read/380093/9165250

txt java面试题集(8) -- 最大的it资源网.txt

JAVA面试题集(8) -- 最大的IT资源网主站首页  视频下载  书籍下载  软件下载  论坛交流  虚拟主机  站内搜索  网站地图  万年历  世界时间查询 豆豆首页 - 在线教程 - 程序设计 - Java语言 - JAVA线程最大的中文IT资源网
www.eeworm.com/read/183070/9179594

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/183070/9179623

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/183070/9179628

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/377814/9261917

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/179061/9375456

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/371917/9531007

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