代码搜索:persistent
找到约 2,751 项符合「persistent」的源代码
代码结果 2,751
www.eeworm.com/read/153251/5651857
java defaultmessagecache.java
/**
* Redistribution and use of this software and associated documentation
* ("Software"), with or without modification, are permitted provided
* that the following conditions are met:
*
* 1
www.eeworm.com/read/295342/8168872
txt readme-chap6.txt
%
% README Chapter 6
%
% by Hiroshi Harada
%
% If you have any bugs and questions in our simulation programs, please e-mail
% to harada@ieee.org. We try to do our best to answer your questions.
www.eeworm.com/read/248541/12554226
f filter.f
subroutine filter
!! ~ ~ ~ PURPOSE ~ ~ ~
!! this subroutine calculates the reduction of pollutants in surface runoff
!! due to an edge of field filter or buffer strip
!!
www.eeworm.com/read/111679/15505998
java reservation.java
//
// Unified Library Application
// Case study in Unified Modeling Language Toolkit
//
// Reservation.java: a reservation reservs a title for
// a specific borrower, meaning the borrower sho
www.eeworm.com/read/389656/8509282
m ymissile.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/389656/8509294
asv xdotmissile.asv
function xdot=xdotMissile(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/389656/8509299
m xdotmissile.m
function xdot=xdotMissile(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/389656/8509301
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/389656/8509304
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