代码搜索:PID

找到约 10,000 项符合「PID」的源代码

代码结果 10,000
www.eeworm.com/read/320820/13417640

m chap4_7b.m

%Fuzzy PID Control close all; clear all; a=readfis('fuzzpid'); %Load fuzzpid.fis ts=0.001; sys=tf(5.235e005,[1,87.35,1.047e004,0]); dsys=c2d(sys,ts,'tustin'); [num,den]=tfdata(dsys,'v');
www.eeworm.com/read/320714/13419385

c setsid.c

/* * linux/lib/setsid.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。 // 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。 //// 创建一个会话并设置进程组
www.eeworm.com/read/320667/13420306

c process.c

#include #include #include #include #include #include int COLOR[] = { 31, 32, 33, 34, 35, 36 }; const int COLOR_NUM = sizeof( COLOR )
www.eeworm.com/read/320130/13432635

m chap2_8f.m

%PID Controler Based on Ziegler-Nichols clear all; close all; ts=0.25; sys=tf(1,[10,2,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v'); axis('square'),zgrid('new'); figure(1); rloc
www.eeworm.com/read/319082/13463193

inf wceusbsh.inf

; ; Windows CE USB Host Setup File ; Copyright (c) Microsoft Corporation ; ; WCEUSBSH.INF -- This is the inf installation script for the stand-alone ; relea
www.eeworm.com/read/319082/13463196

inf wceusbsh.inf

; ; Windows CE USB Host Setup File ; Copyright (c) Microsoft Corporation ; ; WCEUSBSH.INF -- This is the inf installation script for the stand-alone ; relea
www.eeworm.com/read/318488/13477524

m readanalyzehdr2.m

function [pre,dim,siz,lim,scale,offset,origin,descr,fileformat]=readanalyzehdr2(name); % Reads the header of an analyze file % % [pre,dim,siz,lim[,scale[,offset[,origin[,descr[,fileformat]]]]]]=read
www.eeworm.com/read/318255/13482568

c child.c

#include "apue.h" #include static void sig_cld(int); int main() { pid_t pid; if (signal(SIGCLD, sig_cld) == SIG_ERR) perror("signal error"); if ((pid = fork()) < 0) { perror("fo
www.eeworm.com/read/318254/13482583

c threadid.c

#include "apue.h" #include pthread_t ntid; void printids(const char *s) { pid_t pid; pthread_t tid; pid = getpid(); tid = pthread_self(); printf("%s pid %u tid %u (0x%x)\n", s, (u
www.eeworm.com/read/315319/13546051

c event.c

/* * Event notification code. * (C) 2005 FUJITA Tomonori * This code is licenced under the GPL. * * Some functions are based on audit code. */ #include #include "iet