代码搜索:双积分AD

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

代码结果 10,000
www.eeworm.com/read/277684/10612743

cpp 外推法计算重积分.cpp

#include #include #define m 20 double f(double x,double y) { double f; f=tan(pow(x,2)+pow(y,2)); return f; } double tfun(double a,double b,double c,double d,int q) {
www.eeworm.com/read/277684/10612766

dsw 外推法计算重积分.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "外推法计算重积分"=".\外推法计算重
www.eeworm.com/read/277684/10612770

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)
www.eeworm.com/read/441894/7663212

cpp 龙贝格积分法.cpp

? Romberg算法 #include #include void main() { double a,b,h,T[30][30],eps; double f(double x),fz,t; int k,l,m,n,i,j; printf("Romberg算法求积分\n"); printf("输入积分下上限及控制精度(以空格分隔):"
www.eeworm.com/read/333504/12678244

txt 数值积分的几种方法.txt

数值积分的几种方法 复化梯形公式,复化抛物线公式和Romberg求积法的算法程序: 以下程序均定义误差限为1*10^-5; 1)复化梯形公式: #include #include #define e 1e-5 #define a 0 //积分下限a #define b 1
www.eeworm.com/read/142301/12952522

cpp 二重积分函数.cpp

#include #include float f1( float x,float y ) //定义被积函数 1+x^2 { float z; z=1+pow(x,2)+y; return z; } ////////////////