代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/178344/9407133
m chap1_12.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/178344/9407186
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/178315/9408741
c daemon.c
/* daemon.c - Holds the auto-login daemon and its code.
*
* Copyright (c) 2001 Jakob "kuba" Stasilowicz
* Copyright (c) 2003 Joachim Nilsson
*
* qADSL
www.eeworm.com/read/373386/9457921
c kill.c
#include
#include
#include
#include
main()
{
pid_t pid;
int status;
if(!(pid= fork())){
printf("I am child process!\n");
sleep(10);
return;
}
else{
printf(
www.eeworm.com/read/373257/9467020
c 4.c
#include
#include
main(){
int pid1;//申请两个变量用来储存进程返回值
int pid2;
int x,fd[3];//fd数组用来标示接受和发送端口
char S[50];//用来存储字符
pipe(fd);//建立管道
www.eeworm.com/read/373257/9467022
c 3.c
#include
#include
#include
#include
int pid1;
int pid2;
void func(){
kill(pid1,10);
kill(pid2,12);
wait(NULL);
w
www.eeworm.com/read/372995/9480723
inf d12test.inf
[Version]
Signature="$CHICAGO$"
Class=USB
provider=%PHILIPS%
LayoutFile=layout.inf
[Manufacturer]
%MfgName%=Philips
[Philips]
%USB\VID_0471&PID_0222.DeviceDesc%=D12TEST.Dev, USB\VID_0471&P
www.eeworm.com/read/372995/9480727
inf d12test.inf
[Version]
Signature="$CHICAGO$"
Class=USB
provider=%PHILIPS%
LayoutFile=layout.inf
[Manufacturer]
%MfgName%=Philips
[Philips]
%USB\VID_0471&PID_0222.DeviceDesc%=D12TEST.Dev, USB\VID_0471&P
www.eeworm.com/read/372735/9495349
c example21.c
#include
#include
#include
int main(void)
{
int n, fd[2];
pid_t pid;
char line[1024];
if (pipe(fd) < 0)
exit(0);
if ( (pid = fork(
www.eeworm.com/read/372735/9495385
c tcp44daemon.c
#include
#include
#include
void main(void)
{
pid_t pid;
pid = fork();
if (pid>0) {
printf("daemon on duty!\n");
exit(0