代码搜索:校正电路

找到约 10,000 项符合「校正电路」的源代码

代码结果 10,000
www.eeworm.com/read/217265/14972221

log usb eco.log

Added Room: Name=U盘电路设计
www.eeworm.com/read/265665/11258051

txt 编解码电路与系统安全.txt

  编解码电路与系统安全
www.eeworm.com/read/419933/10828175

c 4阶adams预估-校正算法.c

#include #include #include double f(double x,double y) { double z; z=-y+cos(2*x)-2*sin(2*x)+2*x*exp(-x); return(z); } void RK(double x[4],double y[4],double h) //用经典4
www.eeworm.com/read/440625/7684990

txt 相位差校正法程序.txt

% 本程序理论依据:《通用的离散频谱相位差校正方法》,丁康 % N=256; m=256; f=49.4988; t1=4/f; global k; L=256; %t=0:t1/N:(t1-t1/N); fs=3167.9232; n=0:1:N-1; x1=310*cos(2*pi*49.5*n/fs+(pi/36))+6.2*cos(2*pi*2*49.5*
www.eeworm.com/read/327655/13068883

txt 非线性校正与温度补偿.txt

#include"user.h" sbit AdjPort=P1^6; #define ZERO_VAL 0 struct LINE{ float k; float b; }; #define TEMP_DEPTH 7 //温度级数 struct LINE code L[TEMP_DEPTH]={{2.6867,0},{2.8169,0},{2.9580,0},{2.9726,
www.eeworm.com/read/120929/14782597

c 4阶adams预估-校正算法.c

#include #include #include double f(double x,double y) { double z; z=-y+cos(2*x)-2*sin(2*x)+2*x*exp(-x); return(z); } void RK(double x[4],double y[4],double h) //用