代码搜索:persistent

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

代码结果 2,751
www.eeworm.com/read/438909/7724684

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/438605/7729282

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/435094/7797406

m load_database.m

function out=load_database(); % We load the database the first time we run the program. persistent loaded; persistent w; if(isempty(loaded)) v=zeros(10304,400); for i=1:40 cd(
www.eeworm.com/read/295921/8134740

m load_database.m

function out=load_database(); % We load the database the first time we run the program. persistent loaded; persistent w; if(isempty(loaded)) v=zeros(10304,400); for i=1:40 cd(
www.eeworm.com/read/333652/12666770

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/246998/12693483

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/329140/12976763

pro bgsynchronizer.pro

/***************************************************************************** Copyright (c) Prolog Development Center A/S ***********************************************
www.eeworm.com/read/241694/13125138

txt 新建 文本文档 (12).txt

Net use将计算机与共享资源连接或断开,或者显示关于计算机连接的信息。该命令还控制持久网络连接。如果在没有参数的情况下使用,则 net use 检索网络连接列表。 语法 net use [{DeviceName | *}] [\\ComputerName\ShareName[\volume]] [{Password | *}]] [/user:[DomainName\]UserNa
www.eeworm.com/read/138887/13205899

txt hibernate2 参考文档之二.txt

Chapter 2. 体系结构 2.1. 总览 对Hibernate非常高层的概览: 这幅图展示了Hibernate使用数据库和配置文件数据来为应用程序提供持久化服务(和持久化的对象)。 让我们更细致地观察一下运行时的体系结构。 挺不幸的,Hibernate是比较复杂的,提供了好几种不同的运行方式。我们展示一下两种极端情况。轻型体系中,应用程序自己提供JDBC连接,并且自行管理 ...
www.eeworm.com/read/321972/13391596

m button_clicked.m

function button_clicked % Declare and initialize variable to store the count persistent count if isempty(count) count = 0; end % Update count count = count + 1; % Create new string