代码搜索:precise

找到约 541 项符合「precise」的源代码

代码结果 541
www.eeworm.com/read/207474/15270686

txt readme.txt

Basic Communications Program Malcom Kemp April 3, 2000 This program was written to facilitate the development of a communications program for the PIC microcontroller. The overriding criteria w
www.eeworm.com/read/173966/9628086

txt readme.txt

Basic Communications Program Malcom Kemp April 3, 2000 This program was written to facilitate the development of a communications program for the PIC microcontroller. The overriding criteria w
www.eeworm.com/read/247850/12616178

txt readme.txt

Basic Communications Program Malcom Kemp April 3, 2000 This program was written to facilitate the development of a communications program for the PIC microcontroller. The overriding criteria w
www.eeworm.com/read/100518/15872912

txt readme.txt

Basic Communications Program Malcom Kemp April 3, 2000 This program was written to facilitate the development of a communications program for the PIC microcontroller. The overriding criteria w
www.eeworm.com/read/178745/9386535

m m_cov_cul03_unmodule_precise.m

%*********** 1023点m序列的产生 ****************% clear; clc; close all; cof1=4; cof2=9; N=9 number=2^N-1 m=zeros(1,number); for i=1:N m(i)=1; end p=0; i=1; for i=N+1:number m(i)=(((~m(i-N
www.eeworm.com/read/328068/13048442

txt nvs_2_clc_versioning.txt

Network Versioning System ========================= Part II - CLC Versioning CLC Versioning -------------- Client messages to the server are a single one-way transaction, hence aren't a prob
www.eeworm.com/read/334200/12618496

txt nvs_2_clc_versioning.txt

Network Versioning System ========================= Part II - CLC Versioning CLC Versioning -------------- Client messages to the server are a single one-way transaction, hence aren't a prob
www.eeworm.com/read/392091/8363138

m pid_smith.m

%纯滞后smith控制算法Gp(s)=exp(-80s)/(60s+1) %采样时间20s,按阶跃响应;M=1为模型不精确 M=2精确 M=3为pi控制kp=0.5 ki=0.01 clear all; close all; ts=20; %delay plant kp=1; tp=60; tol=80; sys=tf([kp],[tp,1],'inputdelay',t
www.eeworm.com/read/432495/8601920

m chap2_5.m

%Big Delay PID Control with Smith Algorithm clear all;close all; Ts=20; %Delay plant kp=1; Tp=60; tol=80; sys=tf([kp],[Tp,1],'inputdelay',tol); dsys=c2d(sys,Ts,'zoh'); [num,den]=tfdata(dsys