代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/137489/13320127
rlatex
#!/bin/sh
while true; do
pid=$$
export pid
rm -f /tmp/rlok$pid
(
if latex $*; then
touch /tmp/rlok$pid
fi
) | tee /tmp/rlso$pid
if [ ! -f /tmp/rlok$pid ]; then
r
www.eeworm.com/read/323694/13326026
cpp stdafx.cpp
// stdafx.cpp : 只包括标准包含文件的源文件
// pid.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
// 引用任何所需的附加头文件,而不是在此文件中引用
www.eeworm.com/read/137022/13347658
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/322856/13363506
c daemonize.c
/* $Id: daemonize.c,v 1.10 2007/10/06 11:28:14 nanard Exp $ */
/* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (c) 2006 Thomas Bernard
* This software is subject
www.eeworm.com/read/322437/13380002
m cpid1.m
%无时滞环节的控制系统PID仿真
clear all;
close all;
ts=0.01;%采样时间
sys=tf([20],[1.6,4.4,1]);%构造时滞系统传递函数模型
dsys=c2d(sys,ts,'z');%连续系统离散化,用z变换
[num,den]=tfdata(dsys,'v');%求零极点矩阵
u_1=0.0;u_2=0.0;%输入输出等相关变量初始化
www.eeworm.com/read/322344/13381996
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/321262/13409994
c 11-1.c
#include
#include
#include
#include
main()
{
pid_t pid;
int status;
if(!(pid= fork()))
{
printf("Hi I am child
www.eeworm.com/read/321262/13410076
c 9-3.c
#include
#include
main() {
int pid;
pid = fork();
switch(pid) {
case -1:
perror("fork failed");
exit(1);
case 0:
execl("/bin/ls","ls","-l"
www.eeworm.com/read/320892/13416877
h proccollection.h
#ifndef PROCCOLLECTION
#define PROCCOLLECTION
#include "ProcItem.h"
#include
using namespace std;
class ProcCollection
{
private:
vector procInfo;
float totalMem;
float s
www.eeworm.com/read/320130/13432573
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)