代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/375797/9349303
inf p2k.inf
; INF file for P2k.sys in Windows 2000, Windows Xp and Windows 98, Install Shield will install this file for all O/S.
; Copyright (c) 2000-2003, Motorola, Inc.
[Version]
Signature=$Chicago$
C
www.eeworm.com/read/179104/9372581
htm pid参数的如何设定调节--西南科技大学应用 中国自动化网.htm
PID参数的如何设定调节--西南科技大学应用 | 中国自动化网
www.eeworm.com/read/179061/9375434
m chap7_4.m
clear all;
close all;
nl_pid0=[0 0 0];
options=[1 0.01 0.01];
nl_pid=lsqnonlin('chap7_4f1',nl_pid0,options)
www.eeworm.com/read/179061/9375539
m chap2_8.m
%PID Controler (2001/9/6)
close all;
ts=0.25;
sys=tf(1,[10,2,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;
y_1=0;y_2=0;
x=[0,0,0]';
error_1=0;
for k=1:1:1000
www.eeworm.com/read/179061/9375603
m chap1_20.m
%PID Controler with Partial differential
clear all;
close all;
ts=20;
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u_4=0;u_5=0;
www.eeworm.com/read/374989/9376303
c getpid.c
#include
#include
#include
int main(void)
{
pid_t pid;
if((pid = fork()) == -1)
{
printf("fork error!\n");
exit(1);
}
if(pid == 0)
pri
www.eeworm.com/read/374989/9376317
c fork3.c
#include
#include
#include
int main(void)
{
pid_t pid;
pid = fork();
switch(pid) {
case 0:
while(1)
{
printf("A background process, PI
www.eeworm.com/read/374989/9376320
c diffork.c
#include
#include
#include
int globVar = 5;
int main(void)
{
pid_t pid;
int var = 1, i;
printf("fork is diffirent with vfrok \n");
pid = fo
www.eeworm.com/read/374989/9376336
c fork2.c
#include
#include
#include
int main(void)
{
pid_t pid;
char * msg;
int k;
printf("Process Creation Study\n");
pid = fork();
switch(pid
www.eeworm.com/read/374989/9376491
c send_data_signo.c
// 示例利用信号传递数据,本程序发送数据
// 选项-d 后跟待传递的数据,选项-s 后跟待发送的信号,选项-p 后跟目的进程ID
#include
#include
#include
int main(int argc, char ** argv)
{
union sigval value;
int si