代码搜索:双积分ADC
找到约 10,000 项符合「双积分ADC」的源代码
代码结果 10,000
www.eeworm.com/read/331282/12835104
txt 华为阳光积分的题目.txt
华为阳光积分的题目,大家看看,给点意见
华为阳光积分的题目,大家看看,给点意见
一、单选题(每题3分)
1、 在以太网中,帧的长度有一个下限,这主要是出于( )的考虑。
A、载波监听 B、多点访问 C、冲突检测 D、提高网络带宽利用率
2、 一个IP报文在路由器中经过一番处理之后,TTL字段值变为0,这时( )
A、路 ...
www.eeworm.com/read/142303/12952500
cpp 计算多重积分高斯法.cpp
www.eeworm.com/read/316593/13520604
pdf 卷积分析法.pdf
www.eeworm.com/read/305534/13766521
ppt 时域积分性质证明.ppt
www.eeworm.com/read/305534/13766551
ppt 微积分性质的证明.ppt
www.eeworm.com/read/238470/13884580
pro 例2.14 积分运算.pro
www.eeworm.com/read/256090/12029381
pdf 复变函数的积分.pdf
www.eeworm.com/read/337991/12330634
ewb 积分和微分电路.ewb
Electronics Workbench Circuit File
Version: 5
Charset: ANSI
Description:
""
EncryptionType: 2
UsingVectorGraphics: 0
/000@D0I0?4D
www.eeworm.com/read/127195/14370035
txt 自适应simpson积分算法.txt
#include
#include
#include
#include
#include
#define n 100
float f(float x)
{
float y;
y=x*((float)sqrt(1+x*x));
return(y);
}
voi
www.eeworm.com/read/213547/15130646
c 龙格贝积分算法.c
//龙格贝积分算法//
//对于不同f(x),修改程序#define f(x)项,本例f(x)=sin(x),区间[a,b]=[1,2],初始h=(b-a)/n=(b-a)/20
#include "stdio.h"
#include "math.h"
#define f(x) (sin(x))
#define N_H 20
#define MAXREPT 10
#def