代码搜索:para
找到约 10,000 项符合「para」的源代码
代码结果 10,000
www.eeworm.com/read/100285/6270650
sgml trouble.sgml
Troubleshooting
Postmaster Startup Failures
There are several common reasons for the postmaster to fail to start up
www.eeworm.com/read/100285/6270677
sgml history.sgml
A Short History of Postgres
The Object-Relational Database Management System now known as
PostgreSQL (and br
www.eeworm.com/read/100285/6270708
sgml security.sgml
Security
Database security is addressed at several levels:
Data base file protection. All fil
www.eeworm.com/read/100285/6270801
sgml xfunc.sgml
Extending SQL: Functions
As it turns out, part of defining a new type is the
definition of functions that describe its
www.eeworm.com/read/486900/6519672
m m7_1f.m
function dy = PlantModel(t,y,flag,para)
u=para;
J=0.038;B=1;
dy=zeros(2,1);
dy(1) = y(2);
dy(2) = -(B/J)*y(2) + (1/J)*u;
www.eeworm.com/read/403569/11514708
m chap5_3plant.m
function dx=PlantModel(t,x,flag,para)
global A B
dx=zeros(2,1);
u=para;
dx=A*x+B*u;