代码搜索:para
找到约 10,000 项符合「para」的源代码
代码结果 10,000
www.eeworm.com/read/423266/10574943
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/418629/10937289
txt jalopy-license.txt
The Jalopy BSD License
Software License
License
www.eeworm.com/read/460712/7105599
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;
www.eeworm.com/read/105767/7108970
sgml customize.sgml
Customizing Intercom for Your Needs
It is often desirable to change the way a program
www.eeworm.com/read/444916/7602761
xml settings.xml
Settings system
Classes Settings and StaticSettings
can be used to store configuration.
Intern
www.eeworm.com/read/439387/7711371
sh batch_test.sh
#!/bin/bash
# This is only an example file to help you getting started with
# shell-scripting. It does not work as it is, you have to adjust
# it (and the prepare the tcl file for it)!
OutputDir="/ho
www.eeworm.com/read/439271/7713632
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;