代码搜索:双积分ADC

找到约 10,000 项符合「双积分ADC」的源代码

代码结果 10,000
www.eeworm.com/read/119065/6308348

dsp 变步长求积分.dsp

# Microsoft Developer Studio Project File - Name="变步长求积分" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/119065/6308349

dsw 变步长求积分.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/478955/6708614

txt 定积分计算(romberg).txt

/* Romberg求定积分 输入:积分区间[a,b],被积函数f(x,y,z) 输出:积分结果 f(x,y,z)示例: double f0( double x, double l, double t ) { return sqrt(1.0+l*l*t*t*cos(t*x)*cos(t*x)); } */ dou
www.eeworm.com/read/403717/11512727

txt 定积分计算(romberg).txt

/* Romberg求定积分 输入:积分区间[a,b],被积函数f(x,y,z) 输出:积分结果 f(x,y,z)示例: double f0( double x, double l, double t ) { return sqrt(1.0+l*l*t*t*cos(t*x)*cos(t*x)); } */ dou
www.eeworm.com/read/400753/11569517

txt 定积分计算(romberg).txt

/* Romberg求定积分 输入:积分区间[a,b],被积函数f(x,y,z) 输出:积分结果 f(x,y,z)示例: double f0( double x, double l, double t ) { return sqrt(1.0+l*l*t*t*cos(t*x)*cos(t*x)); } */ dou
www.eeworm.com/read/128414/14299625

c 龙贝格积分.c

#define PI 3.14159265359 #include #include main() { double a,b,e; double lbgjf(double a,double b,double e); printf("input the band(a-->b):"); scanf("%lf%lf",&a,&b)
www.eeworm.com/read/220804/14788094

m 卷积积分的计算.m

%《MATLAB在电子信息课程中的应用》第六章例6.4程序q604a % 卷积积分的计算(调用MATLAB卷积函数conv) % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 u=input('输入u数祖 u= '); % 输入u,h序列 h=input('输入h数祖 h= '); dt=input('输入时间间隔dt= '); y =conv(u,h);