代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/438605/7729268
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/438605/7729331
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/438605/7729366
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/438601/7729482
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/437619/7744808
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/435027/7798876
c pthread.c
#include
#include
#include
#include
#include
void *mythread1(void *num)
{
int i;
for(i = 0; i < 5; i++){
printf("thread1: %d\n", (
www.eeworm.com/read/435023/7799024
c pipe.c
#include
#include
#include
#include
int main(int argc, char *argv[])
{
int pfd[2];
int rtn, rtn_1, flag;
pid_t pid, pid_1;
long v;
ssize_t nread;
char
www.eeworm.com/read/289562/7805606
13 fig8.13
#include "apue.h"
static void charatatime(char *);
int
main(void)
{
pid_t pid;
TELL_WAIT();
if ((pid = fork()) < 0) {
err_sys("fork error");
} else if (pid == 0) {
WAIT_PARENT(); /* paren