搜索资源列表
tx
- 计算方法实验。自己做的 实 验3 梯形法求定积分值 【实验内容】 1、方法简介 复化梯形公式: , 2、基本原理 设将求积区间[a,b]划分为n等分,步长 ,分点为xi=a+ih,i=0,1,…,n。所谓复化求积法,就是先用低阶求积公式求得每个子段[xi,xi+1]上的积分值Ii,然后再将他们累加求和,用各段积分之和 作为所求积分的近似值。 3、使用说明 (1)本程序在windows xp + vc6.0完美运行,为了保证其正确,请在此环境下
shuzhifenxi4
- 实验题目:复化求积公式 相关知识:将积分区间[a,b]n等分,节点xk=a+kh,k=0,1, …,n,步长 。复化梯形公式为: 再将每个小区间二等分,即整个积分区间[a,b]2n等分,此时复化梯形公式为 。复化梯形公式的递推关系为 其中, , 。 数据结构:(略) 算法设计: 复化梯形公式的算法如下 第一步:n=1,h=b-a; 第二步: ; 第三步:计算 ; 第四步:计算 ; 第五步:n=2n,h=h/2; 第六步:若 (事先给定
lab03
- 复化Simpson积分公式和复化梯形积 分公式计算积分的通用程序 -Complexification Simpson integral formula and Trapezoidal integration formula integral general program
main
- Romberg公式,变步长的复化梯形公式计算Tn,然后计算Sn,之后计算Cn,和Rn-Romberg formula
szjf
- 数值积分的计算程序,使用了复化梯形公式和复化Simpson公式-The calculation program of numerical integral, using complex trapezoid formula and compound Simpson formula
Numerical_Integration
- 利用matlab用基础语法编写数值积分的程序,分别用了复化梯形公式和复化Simpson公式(The program of numerical integration is compiled by using the basic grammar of MATLAB, and the complex trapezoid formula and the complex Simpson formula are used respectively)
chengxu
- 复化求积公式(composite integration rule )是一类重要的求积公式。指将求积区间分为m个子区间,对每个子区间应用同一求积公式,所得到的复合数值积分公式。(The complex quadrature formula is a kind of important quadrature formula. The formula of complex numerical integration is obtained by dividing the quadrature int
matlab求积分实例
- 插值型求积方法 275 8.1.1 梯形公式 276 8.1.2 辛普森公式 277 8.1.3 柯特斯公式 278 8.2 复化求积公式 279 8.2.1 复化梯形公式 279 8.2.2 复化辛普森公式 281 8.2.3 复化柯特斯公式 283 8.2.4 复化求积公式误差分析 285 8.3 步长逐次减半求积方法 286 8.3.1 步长逐次减半梯形求积公式 287 8.3.2 步长逐次减半辛普森求积公式 288