代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/452710/7435324
c chprio.c
/* chprio.c - chprio */
#include
#include
#include
/*------------------------------------------------------------------------
* chprio -- change the scheduling
www.eeworm.com/read/452710/7435325
c ready.c
/* ready.c - ready */
#include
#include
#include
#include
/*------------------------------------------------------------------------
* ready -- make a p
www.eeworm.com/read/452710/7435329
c setdev.c
/* setdev.c - setdev */
#include
#include
#include
/*------------------------------------------------------------------------
* setdev - set the two device en
www.eeworm.com/read/451665/7458404
txt stock.txt
CREATE DATABASE Stock
GO
USE Stock
GO
CREATE TABLE Client
(Cid int PRIMARY KEY IDENTITY,
Cname varchar(50) NOT NULL,
Ctype tinyint,
Contact varchar(30),
Address varchar(50),
www.eeworm.com/read/449996/7492037
c ax25dump.c
/* AX25 header tracing
*/
#include
#include "global.h"
#include "mbuf.h"
#include "ax25.h"
#include "lapb.h"
#include "trace.h"
#include "socket.h"
static char *decode_type(uint1
www.eeworm.com/read/449294/7509171
txt readme.txt
经过测试,运行正常。
运行./auto.sh1 PID即可。
PID要监控的进程PID号。
作者:张帅
QQ:94643108 欢迎一起讨论 一起学习。
www.eeworm.com/read/449038/7519729
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/449038/7519792
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/449038/7519827
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/449030/7520016
s syscalltest2.s
# syscalltest2.s - An example of getting a return value from a system call
.section .bss
.lcomm pid, 4
.lcomm uid, 4
.lcomm gid, 4
.section .text
.globl _start
_start:
movl $20, %eax
in