代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/349094/10852841
m optimpid.m
function [C,fval]=optimPID(G,ctype,idx)
% OPTIMPID Optimal PID tuning based on integral performance criteria
%
% [C,fval]=optimPID(G,ctype,idx) returns the optimal PID paraters based on
% specifi
www.eeworm.com/read/419410/10870341
c execve.c
#include
#include
#include
int main(int argc,char * argv[],char ** environ)
{
pid_t pid;
int stat_val;
printf("Exec example!\n");
pid = fork();
www.eeworm.com/read/419410/10870697
c monitor.c
#include
#include
#include
#include
#include
int main(int arg, char *argv[],char ** environ)
{
int fd[2];
pid_t pid;
int stat_v
www.eeworm.com/read/273339/10919705
txt test9_7.txt
#include
#include
#include
void h_exit(int status);
static void forkerror(void);
static void waiterror(void);
int main(void)
{
pid_t pid;
in
www.eeworm.com/read/273339/10919854
txt test9_7.txt
#include
#include
#include
void h_exit(int status);
static void forkerror(void);
static void waiterror(void);
int main(void)
{
pid_t pid;
in
www.eeworm.com/read/273090/10927857
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/273090/10928110
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/273065/10929582
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/273025/10931057
c setsid.c
/*
* linux/lib/setsid.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall0(pid_t,setsid)