代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/438909/7724681
m readtracks.m
function tracks = ReadTracks(gps)
% ReadTracks Read all the track data from the GPS
global pid_command_data cmd_transfer_trk pid_xfer_cmplt pid_trk_hdr
global pid_ack_byte pid_nak_byte pid_trk_da
www.eeworm.com/read/438605/7729330
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/437531/7746353
txt 说明.txt
被控对象
y(k)=0.368y(k-1)+0.26y(k-2)+0.10u(k-1)+0.632u(k-2)
输入指令为一方波信号:rin(k)=0.5sgn(sin(4πt)),采样时间为1ms,分别采用4种控制律进行单神经元PID控制,即无监督的Hebb学习规则、有监督的Delta学习规则、有监督的Hebb学习规则、改进的Hebb学习规则,跟踪结果见图形。
www.eeworm.com/read/437529/7746359
txt 说明.txt
被控对象为
G(s)=523500/(s^3+87.35s^2+10470s)
采样时间为1ms,采用模糊PID控制进行阶跃响应,在第300个采样时间时控制器输出加1.0的干扰.
www.eeworm.com/read/437267/7752510
inf usbblst.inf
; Installation INF for Altera USB-Blaster Device Driver
;
; Copyright (c) 2001-2004 Future Technology Devices International Ltd.
; Copyright (c) 2004 Altera Corporation
;
[Version]
Signature="
www.eeworm.com/read/436985/7757678
inf usblogic.inf
; usblogic.Inf - install information file
[Version]
Signature="$CHICAGO$"
Class=USB
provider=%YsuLyw%
LayoutFile=layout.inf
DriverVer=12/12/2001,1.0.1.0
[Manufacturer]
%YsuLyw%=YsuLyw
[
www.eeworm.com/read/436981/7757805
inf usbgraph.inf
; usbgraph.Inf - install information file
[Version]
Signature="$CHICAGO$"
Class=USB
provider=%YsuLyw%
LayoutFile=layout.inf
DriverVer=12/12/2001,1.0.1.0
[Manufacturer]
%YsuLyw%=YsuLyw
[
www.eeworm.com/read/436304/7772881
c change.c
#include "ysh.h"
#include "extern.h"
void ctrl_z()
{
NODE *p;
int i=1;
if (pid1==0)
goto out; /*前台没有工作*/
/*改变链表中的相应节点的状态*/
if (head!=NULL) { /*链表不为空*/
p=head;
/*遍历链表,看该工作是否
www.eeworm.com/read/289562/7805534
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/289562/7805638
c fork1.c
#include "apue.h"
int glob = 6; /* external variable in initialized data */
char buf[] = "a write to stdout\n";
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var