代码搜索:双积分ADC
找到约 10,000 项符合「双积分ADC」的源代码
代码结果 10,000
www.eeworm.com/read/460783/7240763
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/457804/7317634
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/455598/7369681
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/436204/7775256
cpp 龙贝格积分.cpp
//龙贝格积分,数值方法计算定积分
#include
#include
/* Numerical Integration (Romberg) */
template
T romberg(T (*f)(T), T a, T b, T eps = 1e-15)
{
std::vector R;
int k = -1;
www.eeworm.com/read/197077/8032097
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/322875/13362727
cpp romberg算法求积分.cpp
#include
#include
double f(double x)//------函数y=sin(x)/x
{
double m;
if(x==0)m=1;
else m=sin(x)/x;
return m;
}
void main()
{
a1: double a,b,e,T[20][20];
int k,
www.eeworm.com/read/305532/13766569
ppt 时域积分特性证明.ppt
www.eeworm.com/read/302284/13838197
cpp 重积分_070460.cpp
#include
#include
#include
long double f(long double x,long double y)
{
return tan(x*x+y*y);
}
int ss(int r)
{
int ssum=1;
for(int i=1;i
www.eeworm.com/read/119065/6308346
plg 变步长求积分.plg
Build Log
--------------------Configuration: 变步长求积分 - Win32 Debug--------------------
Command Lines
Results
变步长求积分.exe - 0 erro
www.eeworm.com/read/119065/6308347
cpp 变步长求积分.cpp
#include
#include
#include
double infe(double e,int n);
double f(double x);
int i;
double s,tn,t2n,x,h,a,b;
double infe(double e,int n)
{
s=(f(a)+f(b))/2.0;