代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/449038/7519869
m 参数整定.m
clear all;
close all;
kp=100;
Tp=1000;
tol=80; %假设系统参数
sys=tf([kp],[Tp,1],'inputdelay',tol);
figure(1);
rlocus(sys);
[km,pole]=rlocfind(sys)
www.eeworm.com/read/446156/7584915
c setsid.c
/*
* linux/lib/setsid.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall0(pid_t,setsid)
www.eeworm.com/read/445043/7600053
c setsid.c
/*
* linux/lib/setsid.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。
// 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。
//// 创建一个会话并设置进程组
www.eeworm.com/read/444749/7607615
c write_shm.c
#include
#include
#include
#include
#include
#include
#include
#define SIZE 128
void my_handler(int signo)
{
}
int
www.eeworm.com/read/444331/7613847
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/443394/7633648
searchresults untitled project.searchresults
---- PIDUpdate Matches (3 in 3 files) ----
Bldc.c: lDelta = PIDUpdate(&g_sPID, lDelta, g_ulTarget - lDelta);
Pid.c:PIDUpdate(tPIDState *psState, long lPosition, long lError)
Pid.h:extern lon
www.eeworm.com/read/442757/7645362
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/440885/7679186
h saacproto_lserver.h
#ifndef _LSERVER_H
#define _LSERVER_H
#include "version.h"
#ifdef _LOCK_SERVER
#define _DEFLSCONNECT
#ifndef BOOL
#define BOOL int
#define TRUE 1
#define FALSE 0
#endif
enum {
LS_PORT = 0,
LS_LA