代码搜索:pid控制

找到约 10,000 项符合「pid控制」的源代码

代码结果 10,000
www.eeworm.com/read/372735/9495395

c tcp43fork.c

#include #include #include void main(void) { pid_t pid; printf("hello\n"); pid = fork(); switch (pid) { case -1: pri
www.eeworm.com/read/176459/9497624

inf ftdibus.inf

; FTDIBUS.INF ; Copyright (c) 2000-2004 FTDI Ltd. [Version] signature="$CHICAGO$" Class=USB ClassGUID={36fc9e60-c465-11cf-8056-444553540000} Provider=%FTDI% CatalogFile=ftdibus.cat DriverVer
www.eeworm.com/read/176407/9499864

txt 2004128121412.txt

PID处理程序(C51) /*==================================================== 这是从网上找来的一个比较典型的PID处理程序,在使用单片机作为控制cpu时,请稍作简化,具体的PID 参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算, 而将所有参数全部用整数,运算到最后再除 ...
www.eeworm.com/read/176382/9500538

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/372504/9507902

m chap1_12.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/372460/9509927

html learningpid.html

www.eeworm.com/read/372460/9509931

m learningpid.m

%% Learning PID Tuning II: Stability Margin % The PID controller is the most widely used controller in various % engineering systems. However, appropriately tuning a PID controller is % not an easy
www.eeworm.com/read/371917/9530973

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/371917/9531089

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/371917/9531128

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;